import './FieldLabel.css'; import { IconComponent } from '@consta/icons/Icon'; export type FieldLabelPropSize = 'xs' | 's' | 'm' | 'l'; type FieldLabelProps = { icon?: IconComponent; size?: FieldLabelPropSize; required?: boolean; }; export declare const FieldLabel: import("../../utils/types/PropsWithAsAttributes").ComponentWithAs; export {};