/** * White-label portal domain tools for the Frihet MCP server — Day 1 Megasprint (3 tools). * * Tools: * 1. frihet_portal_domain_add — add a custom domain to the client portal * 2. frihet_portal_domain_verify — verify DNS propagation for a custom domain * 3. frihet_portal_domain_remove — remove a custom portal domain * * REST surface: /v1/portal/domain/* proxies Firebase callables: * addCustomPortalDomain, verifyCustomPortalDomain, removeCustomPortalDomain (eu-west1) * * Backend status (post-Day 1 Megasprint, May 2026): * Frihet-ERP PR #397 — White-label portal domain MERGED. * Tools will surface 404 errors until backend REST shell ships. */ import type { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import type { IFrihetClient } from "../client-interface.js"; export declare function registerPortalDomainTools(server: McpServer, client: IFrihetClient): void; //# sourceMappingURL=portal_domain.d.ts.map