import React from 'react'; interface CopyToClipboardButtonProps { className?: string; icon?: string | any; label?: string; successLabel?: string; tooltipContent?: string; successTooltipContent?: string; value: string; style?: "primary" | "secondary" | "text"; } /** * * A button that copies the given value to the clipboard. * * @example * * import CopyToClipboardButton from "@bigbinary/neeto-molecules/CopyToClipboardButton"; * * const CopyToClipboardDemo = ({ value }) => ( * * ); * @endexample */ declare const CopyToClipboardButton: React.FC; export { CopyToClipboardButton as default }; export type { CopyToClipboardButtonProps };