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