import type { ComponentProps } from 'react'; import React from 'react'; import { Button } from '../button'; export type CopyToClipboardProps = { text: string; } & ComponentProps; export declare const CopyToClipboard: (props: CopyToClipboardProps) => React.JSX.Element;