import * as z from "zod/v4-mini"; export type GetCustomerWalletsRequest = { /** * populated from x-max-live header, not query param */ minus?: number | undefined; expand?: string | undefined; fromCache?: boolean | undefined; id?: string | undefined; includeRealTimeBalance?: boolean | undefined; lookupKey?: string | undefined; }; /** @internal */ export type GetCustomerWalletsRequest$Outbound = { "-"?: number | undefined; expand?: string | undefined; from_cache: boolean; id?: string | undefined; include_real_time_balance: boolean; lookup_key?: string | undefined; }; /** @internal */ export declare const GetCustomerWalletsRequest$outboundSchema: z.ZodMiniType; export declare function getCustomerWalletsRequestToJSON(getCustomerWalletsRequest: GetCustomerWalletsRequest): string; //# sourceMappingURL=get-customer-wallets-op.d.ts.map