import { FC, ReactNode } from 'react'; import { MessageProps } from '../../..'; export declare const CopyButton: FC<{ className?: string; contentToCopy: string; locale: 'en' | 'no'; messageInfo: (info: ReactNode, options?: MessageProps) => () => void; text?: string; }>;