import { LabelHTMLAttributes } from 'react';
export interface FormLabelProps extends LabelHTMLAttributes<HTMLLabelElement> {
    description?: string;
    layout?: 'horizontal' | `horizontal-${string}` | 'vertical';
    required?: boolean;
    hideRequiredStar?: boolean;
}
export declare const FormLabel: ({ id, description, layout, required, className, children, hideRequiredStar, ...rest }: FormLabelProps) => import("react/jsx-runtime").JSX.Element;
