import { type Props } from './Buttonv2.component'; export declare const COPY_STATE_IDLE = "idle"; export declare const COPY_STATE_SUCCESS = "success"; export declare const COPY_STATE_UNSUPPORTED = "unsupported"; export declare const useClipboard: () => { copy: (text: string, asHtml?: boolean) => void; copyStatus: string; }; export declare const CopyButton: ({ label, textToCopy, copyAsHtml, variant, ...props }: { label?: string; textToCopy: string; copyAsHtml?: boolean; variant?: "outline" | "ghost"; } & Omit) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=CopyButton.component.d.ts.map