import * as React from "react"; import type { MergeElementProps } from "../../typings"; interface FormControlBaseProps { /** The content of the component. */ children?: React.ReactNode; /** * Append to the classNames applied to the component so you can override or * extend the styles. */ className?: string; /** * If `true`, the label will appear as disabled. * @default false */ disabled?: boolean; /** * If `true`, the label will indicate required input. * @default false */ required?: boolean; } export declare type FormControlLabelProps = MergeElementProps<"label", FormControlBaseProps>; declare type Component = { (props: FormControlLabelProps): React.ReactElement | null; propTypes?: React.WeakValidationMap | undefined; displayName?: string | undefined; }; declare const FormControlLabel: Component; export default FormControlLabel;