import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type TorServiceDescriptor = { algorithmName?: string | undefined; hash?: string | undefined; hashBits?: number | undefined; onion?: string | undefined; }; /** @internal */ export declare const TorServiceDescriptor$inboundSchema: z.ZodType; export declare function torServiceDescriptorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=torservicedescriptor.d.ts.map