/** * POS (Point of Sale) tools for the Frihet MCP server. * * Wave 5 — 4 tools for point-of-sale management: * list_terminals, get_sale, list_sales, refund_sale * * ERP backend endpoints land separately (Frihet-ERP S2 sprint). * Tools target /v1/pos/terminals and /v1/pos/sales. * * Trust Area: refund_sale requires explicit confirmation (destructive). */ import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import type { IFrihetClient } from "../client-interface.js"; export declare function registerPosTools(server: McpServer, client: IFrihetClient): void; //# sourceMappingURL=pos.d.ts.map