/**
* Hook for copying text to clipboard with status tracking.
*
* @param resetDelay - Time in ms before `copied` resets to false (default: 2000)
* @returns Object with `copied` state, `copy` function, `reset` function, and `isSupported` flag
*
* @example
* ```tsx
* const { copied, copy, reset, isSupported } = useCopyToClipboard();
*
* {isSupported && (
*
* )}
* ```
*/
export declare function useCopyToClipboard(resetDelay?: number): {
copied: boolean;
copy: (text: string) => Promise;
reset: () => void;
isSupported: boolean;
};