/** * Tool definitions only (for reference/documentation) * These are used when no handlers are needed */ export declare const ALL_ONBOARDING_TOOLS: (import("../index.js").ToolDefinition | import("./autonomous-discovery-tools.js").DiscoveryTool | import("./phase-5-summary.js").Tool | import("./phase-6-security.js").SecurityTool)[]; /** * Create all onboarding tools with handlers * Used by WebSocket handler to execute tools */ export declare function createAllOnboardingToolsWithHandlers(callbacks?: { onOnboardingComplete?: () => void; }): Array<{ name: string; description: string; input_schema: unknown; handler: (input: Record) => Promise; }>; //# sourceMappingURL=all-tools.d.ts.map