import * as z from "zod"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type ListTotalNewAccountsPerDayResponse = { data: Array>; }; /** @internal */ export declare const ListTotalNewAccountsPerDayResponse$inboundSchema: z.ZodType; /** @internal */ export type ListTotalNewAccountsPerDayResponse$Outbound = { data: Array>; }; /** @internal */ export declare const ListTotalNewAccountsPerDayResponse$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 ListTotalNewAccountsPerDayResponse$ { /** @deprecated use `ListTotalNewAccountsPerDayResponse$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ListTotalNewAccountsPerDayResponse$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ListTotalNewAccountsPerDayResponse$Outbound` instead. */ type Outbound = ListTotalNewAccountsPerDayResponse$Outbound; } export declare function listTotalNewAccountsPerDayResponseToJSON(listTotalNewAccountsPerDayResponse: ListTotalNewAccountsPerDayResponse): string; export declare function listTotalNewAccountsPerDayResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=listtotalnewaccountsperdayresponse.d.ts.map