import type { MarkOptional } from 'ts-essentials'; import type { UIField, UIFieldClient } from '../../fields/config/types.js'; import type { ClientFieldBase, FieldClientComponent, FieldDiffClientComponent, FieldDiffServerComponent, FieldPaths, FieldServerComponent, ServerFieldBase } from '../types.js'; type UIFieldClientWithoutType = MarkOptional; type UIFieldBaseClientProps = { readonly path: string; }; type UIFieldBaseServerProps = Pick; export type UIFieldClientProps = ClientFieldBase & UIFieldBaseClientProps; export type UIFieldServerProps = ServerFieldBase & UIFieldBaseServerProps; export type UIFieldClientComponent = FieldClientComponent; export type UIFieldServerComponent = FieldServerComponent; export type UIFieldDiffServerComponent = FieldDiffServerComponent; export type UIFieldDiffClientComponent = FieldDiffClientComponent; export {}; //# sourceMappingURL=UI.d.ts.map