import { InputType } from "../TextInput"; type UneditableFieldPropType = FormUneditableTextFieldProps & { meta: any; input: any; }; export declare const UneditableField: (componentProps: UneditableFieldPropType) => JSX.Element; export type FormUneditableTextFieldProps = { name: string; type?: InputType; label?: string; disabled?: boolean; autoFocus?: boolean; value?: string; helperText?: string; iscopy?: string; handleCopy: (value: string) => void; }; export default UneditableField;