import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * A single record representing the originating_fdid and originating_cat_reporter_crd */ export type CatReporterInformationCreate = { /** * The prior CAT reporter's 7 digit CRD number; Must be provided with an `ORIGINATING_FDID` */ originatingCatReporterCrd: string; /** * The previous FDID associated with the account; Must be unique and provided with an `ORIGINATING_CAT_REPORTER_CRD` */ originatingFdid: string; }; /** @internal */ export declare const CatReporterInformationCreate$inboundSchema: z.ZodType; /** @internal */ export type CatReporterInformationCreate$Outbound = { originating_cat_reporter_crd: string; originating_fdid: string; }; /** @internal */ export declare const CatReporterInformationCreate$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace CatReporterInformationCreate$ { /** @deprecated use `CatReporterInformationCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CatReporterInformationCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CatReporterInformationCreate$Outbound` instead. */ type Outbound = CatReporterInformationCreate$Outbound; } export declare function catReporterInformationCreateToJSON(catReporterInformationCreate: CatReporterInformationCreate): string; export declare function catReporterInformationCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=catreporterinformationcreate.d.ts.map