import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { PcAnywhereStatus } from "./pcanywherestatus.js"; export type PcAnywhere = { /** * Workstation Name, with padding bytes removed */ name?: string | undefined; /** * Full 'NR' query response */ nr?: string | undefined; status?: PcAnywhereStatus | undefined; }; /** @internal */ export declare const PcAnywhere$inboundSchema: z.ZodType; export declare function pcAnywhereFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=pcanywhere.d.ts.map