import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetVoiceUsageRequest = { /** * The start date in YYYY-MM-DD format. */ startDate: string; /** * The end date in YYYY-MM-DD format. */ endDate: string; }; /** @internal */ export declare const GetVoiceUsageRequest$inboundSchema: z.ZodType; /** @internal */ export type GetVoiceUsageRequest$Outbound = { start_date: string; end_date: string; }; /** @internal */ export declare const GetVoiceUsageRequest$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 GetVoiceUsageRequest$ { /** @deprecated use `GetVoiceUsageRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetVoiceUsageRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetVoiceUsageRequest$Outbound` instead. */ type Outbound = GetVoiceUsageRequest$Outbound; } export declare function getVoiceUsageRequestToJSON(getVoiceUsageRequest: GetVoiceUsageRequest): string; export declare function getVoiceUsageRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getvoiceusage.d.ts.map