import { FieldMetadata, TailorFieldType } from "../configure/types/field.types.mjs"; //#region src/runtime/date.d.ts type DateField = { readonly type: TailorFieldType; readonly metadata: FieldMetadata; readonly fields: Record; }; /** * Convert fields using Date or Temporal representations to date, datetime, or time strings. * @param field - Field defining the value's shape * @param value - Value to serialize * @returns Value with Date and Temporal fields converted to strings * @internal */ export declare function serializeDateFields(field: DateField, value: unknown): unknown; //#endregion