declare function confirmPromptImpl(message: string, initial?: boolean): Promise; declare function textPromptImpl(message: string): Promise; export declare let shouldPrompt: boolean; export declare let confirmPrompt: typeof confirmPromptImpl; export declare let textPrompt: typeof textPromptImpl; export declare function mockPrompts(prompts: { text: (message: string) => Promise; confirm: (message: string) => Promise; shouldPrompt: boolean; }): void; export declare function resetPrompts(): void; export {};