/** * Copyright (c) 2026, Salesforce, Inc., * All rights reserved. * For full license text, see the LICENSE.txt file */ import { COMMANDS } from "./command-registry.js"; import type { QuerySession } from "./session.js"; import type { WalkerResult } from "./walker.js"; export declare function setInteractiveMode(on: boolean): void; export declare function isInteractiveMode(): boolean; export { COMMANDS as QUERY_COMMANDS }; export declare function formatHelp(topic?: string): string; export interface NextStepsContext { sessionId: string; command: string; walkerResult?: WalkerResult; session?: QuerySession; } export declare function formatNextSteps(ctx: NextStepsContext): string;