import { ElementType } from 'react'; import type { LabelProps } from './types'; /** * A headless, accessible label component for form controls that establishes programmatic relationships and improves usability. */ export declare const Label: { ({ as, required, optional, disabled, readOnly, invalid, children, ref, onClick, ...htmlProps }: LabelProps): import("react/jsx-runtime").JSX.Element; displayName: string; };