import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { ExportMetadataEntityType } from "./export-metadata-entity-type.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type ExportMetadataField = { /** * CSV column header to be shown in the exported file */ columnName?: string | undefined; entityType: ExportMetadataEntityType; /** * metadata key to look up */ fieldKey: string; }; /** @internal */ export declare const ExportMetadataField$inboundSchema: z.ZodMiniType; /** @internal */ export type ExportMetadataField$Outbound = { column_name?: string | undefined; entity_type: string; field_key: string; }; /** @internal */ export declare const ExportMetadataField$outboundSchema: z.ZodMiniType; export declare function exportMetadataFieldToJSON(exportMetadataField: ExportMetadataField): string; export declare function exportMetadataFieldFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=export-metadata-field.d.ts.map