/** * Copies text to the clipboard using the modern Clipboard API, * with a robust fallback for older browsers/insecure contexts. * * @param text - The text to copy. * @returns `true` if the copy succeeded, `false` otherwise. */ export declare const copyToClipboard: (text: string) => Promise; export { }