import type { MarkOptional } from 'ts-essentials'; import type { CollapsibleField, CollapsibleFieldClient } from '../../fields/config/types.js'; import type { FieldErrorClientComponent, FieldErrorServerComponent } from '../forms/Error.js'; import type { ClientFieldBase, FieldClientComponent, FieldPaths, FieldServerComponent, ServerFieldBase } from '../forms/Field.js'; import type { FieldDescriptionClientComponent, FieldDescriptionServerComponent, FieldDiffClientComponent, FieldDiffServerComponent, FieldLabelClientComponent, FieldLabelServerComponent } from '../types.js'; type CollapsibleFieldBaseClientProps = FieldPaths; type CollapsibleFieldClientWithoutType = MarkOptional; export type CollapsibleFieldClientProps = ClientFieldBase & CollapsibleFieldBaseClientProps; export type CollapsibleFieldServerProps = ServerFieldBase; export type CollapsibleFieldServerComponent = FieldServerComponent; export type CollapsibleFieldClientComponent = FieldClientComponent; export type CollapsibleFieldLabelServerComponent = FieldLabelServerComponent; export type CollapsibleFieldLabelClientComponent = FieldLabelClientComponent; export type CollapsibleFieldDescriptionServerComponent = FieldDescriptionServerComponent; export type CollapsibleFieldDescriptionClientComponent = FieldDescriptionClientComponent; export type CollapsibleFieldErrorServerComponent = FieldErrorServerComponent; export type CollapsibleFieldErrorClientComponent = FieldErrorClientComponent; export type CollapsibleFieldDiffServerComponent = FieldDiffServerComponent; export type CollapsibleFieldDiffClientComponent = FieldDiffClientComponent; export {}; //# sourceMappingURL=Collapsible.d.ts.map