import * as React from "react"; import type { MergeElementProps } from "../../typings"; interface FormControlDescriptionBaseProps { /** 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 description will appear as disabled. * @default false */ disabled?: boolean; } export declare type FormControlDescriptionProps = MergeElementProps<"p", FormControlDescriptionBaseProps>; declare type Component = { (props: FormControlDescriptionProps): React.ReactElement | null; propTypes?: React.WeakValidationMap | undefined; displayName?: string | undefined; }; declare const FormControlDescription: Component; export default FormControlDescription;