import { FC } from "react"; import { InputProps } from "../Input"; export interface FieldProps extends InputProps { label: any; errors?: string[]; helperText?: string[]; } declare const BaseField: FC; export default BaseField;