import type { TMapFocused } from 'refun'; import type { TField } from '../field'; export declare type TFieldLight = { type?: TField['type']; suffix?: string; value: string; onChange: (value: string) => void; onSubmit?: () => void; } & TMapFocused; export declare const FieldLight: import("refun").TComponent;