import { AnyPadroneCommand } from "../types/command.mjs"; //#region src/core/commands.d.ts /** * Builds a completer function for the REPL from the command tree. * Completes command names, subcommand names, option names (--foo), and aliases (-f). * Also includes dot-prefixed built-in REPL commands (.exit, .clear, .scope, .help, .history). */ declare function buildReplCompleter(rootCommand: AnyPadroneCommand, builtins: { inScope?: boolean; }): (line: string) => [string[], string]; //#endregion export { buildReplCompleter }; //# sourceMappingURL=commands.d.mts.map