/** * Fiscal tools for the Frihet MCP server — Wave 6 (7 tools). * * Tools: * 1. get_modelo_303_summary — IVA quarterly Spain * 2. get_modelo_130_summary — IRPF estimated payment Spain * 3. get_modelo_390_summary — IVA annual recap Spain * 4. get_modelo_180_summary — IRPF rentals annual Spain * 5. get_modelo_347_summary — Operations >€3005 annual third-party recap * 6. verifactu_status — VeriFactu submission status for an invoice * 7. verifactu_resubmit — Re-submit a failed VeriFactu submission (TRUST AREA) * * NOTE: ticketbai_status is registered by einvoice.ts (canonical, more complete impl). * * REST surface: /v1/fiscal/* (documented: pending — backend ships separately) * * NOTE: ERP backend endpoints /v1/fiscal/* are planned. Tools are wired * and will surface 404 errors until the backend ships. */ import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import type { IFrihetClient } from "../client-interface.js"; export declare function registerFiscalTools(server: McpServer, client: IFrihetClient): void; //# sourceMappingURL=fiscal.d.ts.map