import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Target = { alias?: string | undefined; auths?: Array | null | undefined; dnsPortals?: Array | null | undefined; errors?: Array | null | undefined; name?: string | undefined; privatePortals?: Array | null | undefined; publicPortals?: Array | null | undefined; }; /** @internal */ export declare const Target$inboundSchema: z.ZodType; export declare function targetFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=target.d.ts.map