import { PropsWithChildren, default as React } from 'react'; import { OmitPrivate } from '../../types'; export interface FieldLabelOwnProps extends PropsWithChildren { /** * Controls the alignment of the label. */ justify?: boolean; /** * Whether the label is visually hidden. */ visuallyHidden?: boolean | 'keepSpace'; } export interface FieldLabelInheritedLabelProps extends OmitPrivate> { } /** @inheritdoc */ export interface FieldLabelProps extends FieldLabelOwnProps, FieldLabelInheritedLabelProps { } export declare const FieldLabel: React.ForwardRefExoticComponent>;