interface IOptions {
    /**
     * Reset the status after a certain number of milliseconds. This is useful
     * for showing a temporary success message.
     */
    successDuration?: number;
}
export default function useClipboard(text: string, options?: IOptions): [boolean, () => void];
export {};
