/** * Compact Field Renderer * Ultra-compact field with icon-only label for Figma-like dense UI * Uses ant-d Space.Compact with addonBefore for icons * Supports number, string, and enum/select types */ import { FieldRendererProps } from './FieldRendererProps'; export interface CompactFieldProps extends FieldRendererProps { /** Whether to show only the icon (no label at all) - default true for compact */ iconOnly?: boolean; /** Custom width for the input */ inputWidth?: number | string; } /** * CompactField renders an ultra-compact field using Space.Compact with addonBefore for icons. * Designed for row layouts where multiple fields share space. */ export declare function CompactField({ metadata, value, onChange, onCommit, disabled, iconOnly, inputWidth, }: CompactFieldProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=CompactField.d.ts.map