import { ReactNode, Ref, RefAttributes } from "react"; import { DOMProps } from "@react-types/shared"; import { ForwardedRefComponent } from "../../types/components"; export declare type LabelElementType = HTMLLabelElement; export declare type IntrinsicLabel = Omit; export interface LabelProps extends IntrinsicLabel, DOMProps, RefAttributes { children?: ReactNode; className?: string; } export declare type LabelRef = Ref; declare const Label: ForwardedRefComponent; export { Label };