export interface CopyToClipboardProps { /** * text to display that will be copied on button click */ value?: string; /** * css classes */ className?: string; /** * conditional prop to show a preview string containing the defined value before the copy button */ showValue?: boolean; } /** CopyToClipboard can copy a provided value to the clipboard. You can use the `showValue` prop to decide whether to render or not the provided value. */ export declare const CopyToClipboard: React.FC;