type Prompter = (question: string) => Promise; declare const getConfirmation: Prompter; declare const createConfirmationHandler: (options?: { yes?: boolean; }, prompter?: Prompter) => Prompter; export { type Prompter, createConfirmationHandler, getConfirmation };