import type { FC, HTMLAttributes } from 'react'; type FieldLegendNativeProps = HTMLAttributes; export interface FieldLegendBaseProps { variant?: 'legend' | 'label'; } type FieldLegendProps = FieldLegendNativeProps & FieldLegendBaseProps; export declare const FieldLegend: FC; export {};