import { ContextValue, DOMRenderProps } from './utils'; import React, { LabelHTMLAttributes } from 'react'; export interface LabelProps extends LabelHTMLAttributes, DOMRenderProps<'label', undefined> { elementType?: string; } export declare const LabelContext: React.Context>; export declare const Label: (props: LabelProps & React.RefAttributes) => React.ReactElement> | null;