import type { ReplCodeCommand } from './repl-main';
import type { CommandCompletions } from '../core';
/** the `:signature` subcommand names, offered as completions for its first argument */
export declare const signatureSubcommandNames: string[];
/** completes `:signature`: its subcommands, then a file path for `add` (query args are freeform names) */
export declare function replSignatureCompleter(splitLine: readonly string[], startingNewArg: boolean): CommandCompletions;
export declare const signatureCommand: ReplCodeCommand;
