export declare const yesOrNo: ({ question, defaultValue, }: {
    question: string;
    defaultValue: boolean;
}) => Promise<boolean>;
