import { type Scheme } from "../types.js"; import { type Parsed } from "../util.js"; /** What a question is photographed in when no flag says: one scheme, every form factor. */ export declare const ASK_DEFAULT_SCHEMES: readonly Scheme[]; /** * The flags a question runs with: the caller's, with the scheme defaulted to * dark when none was named. Form factors are deliberately left alone, so the * capture default (every form factor) rules; the verb used to narrow them to * desktop and phone and never said so. */ export declare function askFlags(flags: Parsed["flags"]): Parsed["flags"]; export declare function ask(parsed: Parsed): Promise;