///
import * as Label from '@radix-ui/react-label';
export type FormLabelProps = Label.LabelProps;
type ObjProps = {
id: string;
};
export declare const FormLabel: import("react").ForwardRefExoticComponent<{
[index: `data-${string}`]: unknown;
as?: any;
css?: import("@fuel-ui/css").ThemeUtilsCSS | undefined;
className?: string | undefined;
children?: import("react").ReactNode;
} & Label.LabelProps & import("react").RefAttributes> & ObjProps;
export {};