import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetApiV3MessagesCountsRequest = { /** * Subnet ID */ subnet?: string | null | undefined; }; /** @internal */ export declare const GetApiV3MessagesCountsRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3MessagesCountsRequest$Outbound = { subnet: string | null; }; /** @internal */ export declare const GetApiV3MessagesCountsRequest$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 GetApiV3MessagesCountsRequest$ { /** @deprecated use `GetApiV3MessagesCountsRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3MessagesCountsRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3MessagesCountsRequest$Outbound` instead. */ type Outbound = GetApiV3MessagesCountsRequest$Outbound; } export declare function getApiV3MessagesCountsRequestToJSON(getApiV3MessagesCountsRequest: GetApiV3MessagesCountsRequest): string; export declare function getApiV3MessagesCountsRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3messagescounts.d.ts.map