import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type GetCreditBalanceResponse = { /** * Credit balance of the user */ balance: number | null; }; /** @internal */ export declare const GetCreditBalanceResponse$inboundSchema: z.ZodType; /** @internal */ export type GetCreditBalanceResponse$Outbound = { balance: number | null; }; /** @internal */ export declare const GetCreditBalanceResponse$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 GetCreditBalanceResponse$ { /** @deprecated use `GetCreditBalanceResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetCreditBalanceResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetCreditBalanceResponse$Outbound` instead. */ type Outbound = GetCreditBalanceResponse$Outbound; } export declare function getCreditBalanceResponseToJSON(getCreditBalanceResponse: GetCreditBalanceResponse): string; export declare function getCreditBalanceResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getcreditbalanceresponse.d.ts.map