import type { Style } from "../text/ansi.ts"; export interface ThemeSymbols { readonly bullet: string; readonly divider: string; readonly ellipsis: string; readonly pointer: string; readonly checkboxOn: string; readonly checkboxOff: string; readonly spinner: readonly string[]; } export interface ThemeStyles { readonly text?: Style; readonly muted?: Style; readonly emphasis?: Style; readonly strong?: Style; readonly accent?: Style; readonly success?: Style; readonly warning?: Style; readonly error?: Style; readonly border?: Style; readonly code?: Style; readonly heading?: Style; readonly selection?: Style; } export interface Theme { readonly styles: ThemeStyles; readonly symbols: ThemeSymbols; } //# sourceMappingURL=types.d.ts.map