import type React from 'react';
import type { PropsWithChildren, ReactNode } from 'react';
import type { FormControlUnstyledProps } from '@mui/base';
type FormFieldProps = FormControlUnstyledProps & {
    errorMessage?: string;
    field?: ReactNode;
    helperText?: string | React.ReactElement;
    id?: string;
    label?: string | React.ReactElement;
};
declare const FormField: React.FC<PropsWithChildren<FormFieldProps>>;
export default FormField;
//# sourceMappingURL=form-field.d.ts.map