import type { ToolCommand, Flag } from './types'; export type IgnoredInstructions = Array | Record; export declare function runQuestionnaireFor(command: ToolCommand, args: Record, ignoredInstructions?: IgnoredInstructions, extraInstructions?: Array): Promise; export declare function runQuestionnaire(commandName: string, ignoredInstructions?: IgnoredInstructions, extraInstructions?: Array): Promise;