import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { DurationUnit } from "./duration-unit.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type AutoTopupDuration = { unit?: DurationUnit | undefined; value?: number | undefined; }; export type AutoTopup = { amount?: number | undefined; cooldown?: AutoTopupDuration | undefined; enabled?: boolean | undefined; invoicing?: boolean | undefined; threshold?: number | undefined; }; /** @internal */ export declare const AutoTopupDuration$inboundSchema: z.ZodMiniType; /** @internal */ export type AutoTopupDuration$Outbound = { unit?: string | undefined; value?: number | undefined; }; /** @internal */ export declare const AutoTopupDuration$outboundSchema: z.ZodMiniType; export declare function autoTopupDurationToJSON(autoTopupDuration: AutoTopupDuration): string; export declare function autoTopupDurationFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const AutoTopup$inboundSchema: z.ZodMiniType; /** @internal */ export type AutoTopup$Outbound = { amount?: number | undefined; cooldown?: AutoTopupDuration$Outbound | undefined; enabled?: boolean | undefined; invoicing?: boolean | undefined; threshold?: number | undefined; }; /** @internal */ export declare const AutoTopup$outboundSchema: z.ZodMiniType; export declare function autoTopupToJSON(autoTopup: AutoTopup): string; export declare function autoTopupFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=auto-topup.d.ts.map