import type { Change, Status } from "./doc.js"; /** Every symbol choice a painter needs; authored text never supplies one. */ export interface Glyphs { readonly outcomes: Readonly>; readonly marks: { readonly prompt: string; readonly caret: string; readonly waiting: string; readonly selected: string; readonly unselected: string; readonly partial: string; }; readonly arrows: { readonly up: string; readonly down: string; readonly key: string; }; readonly spinner: ReadonlyArray; readonly tree: { readonly branch: string; readonly last: string; readonly pipe: string; readonly space: string; }; readonly separator: string; readonly ellipsis: string; } export declare const unicodeGlyphs: Glyphs; export declare const asciiGlyphs: Glyphs; //# sourceMappingURL=glyphs.d.ts.map