import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type VolumeShareByCustomerType = { business?: number | undefined; consumer?: number | undefined; p2p?: number | undefined; }; /** @internal */ export declare const VolumeShareByCustomerType$inboundSchema: z.ZodType; /** @internal */ export type VolumeShareByCustomerType$Outbound = { business?: number | undefined; consumer?: number | undefined; p2p?: number | undefined; }; /** @internal */ export declare const VolumeShareByCustomerType$outboundSchema: z.ZodType; export declare function volumeShareByCustomerTypeToJSON(volumeShareByCustomerType: VolumeShareByCustomerType): string; export declare function volumeShareByCustomerTypeFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=volumesharebycustomertype.d.ts.map