import { PortingModule } from './models.js'; export interface CommandExecution { name: string; sourceHint: string; prompt: string; handled: boolean; message: string; } export declare const PORTED_COMMANDS: PortingModule[]; export { PortingModule }; export declare function builtInCommandNames(): Set; export declare function getCommand(name: string): PortingModule | undefined; export declare function getCommands(includePluginCommands?: boolean, includeSkillCommands?: boolean): PortingModule[]; export declare function findCommands(query: string, limit?: number): PortingModule[]; export declare function executeCommand(name: string, prompt?: string): CommandExecution;