import { FC } from "react"; export interface IWrapperProps { id?: string; disabled?: boolean; label: any; errors?: string[]; helperText?: string[]; children?: any; } declare const FieldWrapper: FC; export default FieldWrapper;