import { z } from "zod"; import type { McpTool } from "../tool.js"; import type { JobProfile } from "@onenomad/przm-cortex-core"; declare const inputSchema: z.ZodObject<{ title: z.ZodOptional; employer: z.ZodOptional; team: z.ZodOptional; focusAreas: z.ZodOptional>; responsibilities: z.ZodOptional; stack: z.ZodOptional>; managerSlug: z.ZodOptional; directReports: z.ZodOptional>; }, "strip", z.ZodTypeAny, { title?: string | undefined; team?: string | undefined; focusAreas?: string[] | undefined; stack?: string[] | undefined; directReports?: string[] | undefined; employer?: string | undefined; responsibilities?: string | undefined; managerSlug?: string | undefined; }, { title?: string | undefined; team?: string | undefined; focusAreas?: string[] | undefined; stack?: string[] | undefined; directReports?: string[] | undefined; employer?: string | undefined; responsibilities?: string | undefined; managerSlug?: string | undefined; }>; interface Output { profile: JobProfile; } /** * Patch the workspace's job profile. Only supplied fields overwrite; * everything else stays. Call this when the user shares work context * that should persist — title change, new focus area, joining a new * team, etc. */ export declare const updateJobProfileTool: McpTool; export {}; //# sourceMappingURL=update-job-profile.d.ts.map