import type { Log } from './log';
export declare class Prompt {
    static confirm(input: {
        message: string;
        log: Log;
    }): Promise<void>;
}
