import type { FieldBlockProps, FieldBlockSize } from './types'; export declare const FIELD_BLOCK_HEIGHT: Record; export declare const FIELD_BLOCK_DEFAULTS: { readonly size: "l"; }; /** * Блок поля по дизайн-гайдам. * @param props Свойства. * @return Элемент. */ export declare function FieldBlock({ size, main, mainProps, disabled, failed, focused, label, labelProps, labelAsPlaceholder, fixedHeight, caption, rootRef, rootProps, blockRef, blockProps, adornmentStart, adornmentEnd, 'data-testid': testId, }: FieldBlockProps): import("react").JSX.Element;