import { HTMLAttributes, LabelHTMLAttributes } from 'react';
import { BaseLabelProps } from './types';
export interface UseLabelResult {
labelProps: LabelHTMLAttributes;
fieldProps: HTMLAttributes;
}
export declare function useLabel(props: BaseLabelProps): UseLabelResult;