/** * Payroll preparation tools for the Frihet MCP server — D4-B megasprint (2 tools). * * Tools: * 1. payroll_export — read the normalized export-ready employee dataset * 2. payroll_checklist — read payroll-profile readiness for payable employees * * REST surface: /v1/payroll/prep/export, /v1/payroll/prep/employees * * The ERP validates and echoes a destination-format label but returns the same * normalized JSON dataset for each value. It does not generate a format-specific * file, and Frihet does not process payroll. These read routes are live. */ import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import type { IFrihetClient } from "../client-interface.js"; export declare function registerPayrollTools(server: McpServer, client: IFrihetClient): void; //# sourceMappingURL=payroll.d.ts.map