import type { ToolResult } from "./tools-base.js"; export declare const HOST_ONBOARDING_TOOL_NAMES: readonly ["hemmabo_host_readiness_check", "hemmabo_host_onboarding_link"]; type JsonRecord = Record; export declare function isHostOnboardingToolName(name: string): boolean; export declare function executeHostOnboardingTool(name: string, args: JsonRecord): Promise; export {};