///
export type FormControlProps = {
isRequired?: boolean;
isInvalid?: boolean;
isDisabled?: boolean;
isReadOnly?: boolean;
};
type Context = FormControlProps & {
id: string;
describedBy?: string;
};
export declare function useFormControlProps(): Context;
export declare const FormControl: import("react").ForwardRefExoticComponent<{
[index: `data-${string}`]: unknown;
as?: any;
css?: import("@fuel-ui/css").ThemeUtilsCSS | undefined;
className?: string | undefined;
children?: import("react").ReactNode;
} & FormControlProps & import("react").RefAttributes>;
export {};