/** * Button that copies the provided text to the clipboard and shows a brief visual confirmation. * * @param text - The string content to copy when the button is clicked. * @returns A button element that copies `text` to the clipboard and displays a check icon for two seconds after a successful copy. */ export declare function CopyButton({ text }: { text: string; }): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=CopyButton.d.ts.map