import type { MarkOptional } from 'ts-essentials'; import type { RowField, RowFieldClient } from '../../fields/config/types.js'; import type { ClientComponentProps, ClientFieldBase, FieldClientComponent, FieldPaths, FieldServerComponent, ServerFieldBase } from '../forms/Field.js'; import type { FieldDescriptionClientComponent, FieldDescriptionServerComponent, FieldDiffClientComponent, FieldDiffServerComponent, FieldErrorClientComponent, FieldErrorServerComponent, FieldLabelClientComponent, FieldLabelServerComponent } from '../types.js'; type RowFieldClientWithoutType = MarkOptional; type RowFieldBaseClientProps = Omit & Pick; export type RowFieldClientProps = Omit, 'path'> & RowFieldBaseClientProps; export type RowFieldServerProps = ServerFieldBase; export type RowFieldServerComponent = FieldServerComponent; export type RowFieldClientComponent = FieldClientComponent; export type RowFieldLabelServerComponent = FieldLabelServerComponent; export type RowFieldLabelClientComponent = FieldLabelClientComponent; export type RowFieldDescriptionServerComponent = FieldDescriptionServerComponent; export type RowFieldDescriptionClientComponent = FieldDescriptionClientComponent; export type RowFieldErrorServerComponent = FieldErrorServerComponent; export type RowFieldErrorClientComponent = FieldErrorClientComponent; export type RowFieldDiffServerComponent = FieldDiffServerComponent; export type RowFieldDiffClientComponent = FieldDiffClientComponent; export {}; //# sourceMappingURL=Row.d.ts.map