import { ReactNode, LabelHTMLAttributes } from 'react'; export type LabelProps = { required?: boolean; disabled?: boolean; error?: boolean; text?: string | ReactNode | ReactNode[]; children?: ReactNode | ReactNode[]; } & LabelHTMLAttributes; export declare function Label({ required, disabled, error, children, text, className, ...props }: LabelProps): import("react/jsx-runtime").JSX.Element;