import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type PcAnywhereStatus = { /** * Workstation is In Use if true, Available if false */ inUse?: boolean | undefined; /** * Full 'ST' query response */ raw?: string | undefined; }; /** @internal */ export declare const PcAnywhereStatus$inboundSchema: z.ZodType; export declare function pcAnywhereStatusFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=pcanywherestatus.d.ts.map