import type { TPrimitiveInput } from '@revert/input'; import type { TMapHovered, TMapFocused } from 'refun'; import type { TId } from '../../types'; export declare type TField = { type?: TPrimitiveInput['type']; placeholder?: string; value: string; onChange: (value: string) => void; onSubmit?: () => void; } & TId & TMapHovered & TMapFocused; export declare const Field: import("refun").TComponent;