export type UseClipboardOptions<Source> = {
/**
* Enabled reading for clipboard, need to request permission
*
* @defaultValue false
*/
read?: boolean
/**
* Copy source, which is copied by default when you call the copy method directly without passing any parameters
*/
source?: Source
/**
* Milliseconds to reset state of `copied` ref
*
* @defaultValue 1_500
*/
copiedDuration?: number
}