import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type RegistrationFiling = { date?: string | undefined; region?: string | undefined; registrationNumber?: string | undefined; registrationType?: string | undefined; }; /** @internal */ export declare const RegistrationFiling$inboundSchema: z.ZodType; /** @internal */ export type RegistrationFiling$Outbound = { date?: string | undefined; region?: string | undefined; registrationNumber?: string | undefined; registrationType?: string | undefined; }; /** @internal */ export declare const RegistrationFiling$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 RegistrationFiling$ { /** @deprecated use `RegistrationFiling$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `RegistrationFiling$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `RegistrationFiling$Outbound` instead. */ type Outbound = RegistrationFiling$Outbound; } export declare function registrationFilingToJSON(registrationFiling: RegistrationFiling): string; export declare function registrationFilingFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=registrationfiling.d.ts.map