import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AutoReplenishConfig = { /** * The amount of credits to replenish when auto-replenish is triggered. */ amount?: number | undefined; /** * Whether the organization has auto-replenish enabled. */ enabled: boolean; /** * The threshold at which the organization's credit balance will be auto-replenished. */ threshold?: number | undefined; }; /** @internal */ export declare const AutoReplenishConfig$inboundSchema: z.ZodType; export declare function autoReplenishConfigFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=autoreplenishconfig.d.ts.map