import { FC } from "react";
import { FormControlLabelProps as FormControlLabelGroupProps } from "@mui/material/FormControlLabel";
/**
 * Types
 */
export interface FormControlLabelProps extends FormControlLabelGroupProps {
}
/**
 * Components
 */
declare const FormControlLabel: FC<FormControlLabelProps>;
export default FormControlLabel;
