/// interface ICopyFieldProps { copyValue: string; onLinkCopied?: () => void; copyIconSrc?: string; copyTitle?: string; hasCopyIcon: boolean; classNamePrefix?: string; messageText?: string; } export declare const CopyField: (props: ICopyFieldProps) => JSX.Element; export {};