import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Request to simulate the rejection of a wire deposit */ export type ForceRejectWireDepositRequestCreate = { /** * The name of the wire deposit to force a rejection on */ name: string; /** * The reason for the reject */ reason?: string | undefined; }; /** @internal */ export declare const ForceRejectWireDepositRequestCreate$inboundSchema: z.ZodType; /** @internal */ export type ForceRejectWireDepositRequestCreate$Outbound = { name: string; reason?: string | undefined; }; /** @internal */ export declare const ForceRejectWireDepositRequestCreate$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 ForceRejectWireDepositRequestCreate$ { /** @deprecated use `ForceRejectWireDepositRequestCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ForceRejectWireDepositRequestCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ForceRejectWireDepositRequestCreate$Outbound` instead. */ type Outbound = ForceRejectWireDepositRequestCreate$Outbound; } export declare function forceRejectWireDepositRequestCreateToJSON(forceRejectWireDepositRequestCreate: ForceRejectWireDepositRequestCreate): string; export declare function forceRejectWireDepositRequestCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=forcerejectwiredepositrequestcreate.d.ts.map