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