import type React from 'react';
import type { ReactElement } from 'react';
import { FormControlLabelProps } from '@mui/material';
interface FormControlProps extends FormControlLabelProps {
    control: ReactElement;
    label: string;
    value?: string;
    children?: string;
}
declare const FormControlLabel: React.FC<FormControlProps>;
export default FormControlLabel;
//# sourceMappingURL=form-control-label.d.ts.map