/// interface IProps { value: string; extraStyle?: string; className?: string; element?: ElementComponent; style?: any; } /** * Input field with given value witch let the user copy given value easily */ export declare function CopyTextField(props: IProps): JSX.Element; export {};