import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetApiV3NodesNodeIdRequest = { /** * Node ID */ nodeId: string; }; /** @internal */ export declare const GetApiV3NodesNodeIdRequest$inboundSchema: z.ZodType; /** @internal */ export type GetApiV3NodesNodeIdRequest$Outbound = { node_id: string; }; /** @internal */ export declare const GetApiV3NodesNodeIdRequest$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 GetApiV3NodesNodeIdRequest$ { /** @deprecated use `GetApiV3NodesNodeIdRequest$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `GetApiV3NodesNodeIdRequest$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `GetApiV3NodesNodeIdRequest$Outbound` instead. */ type Outbound = GetApiV3NodesNodeIdRequest$Outbound; } export declare function getApiV3NodesNodeIdRequestToJSON(getApiV3NodesNodeIdRequest: GetApiV3NodesNodeIdRequest): string; export declare function getApiV3NodesNodeIdRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getapiv3nodesnodeid.d.ts.map