import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type UserCredits = { /** * The current credit balance for the user. */ balance: number; /** * The date that the user's credits will be reset. */ resetsAt?: Date | undefined; }; /** @internal */ export declare const UserCredits$inboundSchema: z.ZodType; export declare function userCreditsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=usercredits.d.ts.map