import * as react from 'react'; import { ReactNode } from 'react'; interface CopyToClipboardButtonProps { text?: string; autoHideDuration?: number; buttonContent?: ReactNode; children: NonNullable; } declare const CopyToClipboardButton: react.ForwardRefExoticComponent>; export { CopyToClipboardButton, type CopyToClipboardButtonProps, CopyToClipboardButton as default };