import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * When custom mappings are configured on the resource, the result is included here. */ export type CustomMappings = {}; /** @internal */ export declare const CustomMappings$inboundSchema: z.ZodType; /** @internal */ export type CustomMappings$Outbound = {}; /** @internal */ export declare const CustomMappings$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 CustomMappings$ { /** @deprecated use `CustomMappings$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `CustomMappings$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `CustomMappings$Outbound` instead. */ type Outbound = CustomMappings$Outbound; } export declare function customMappingsToJSON(customMappings: CustomMappings): string; export declare function customMappingsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=custommappings.d.ts.map