import type { Choice } from "./types";
type Options = {
  verbose?: boolean;
  printVariables?: boolean;
};
declare const _default: (choice?: Choice, options?: Options) => Promise<void>;
export default _default;