import type { ThemeHint } from "../bootstrap/capabilities.js"; export interface Theme { readonly background: string; readonly foreground: string; readonly muted: string; readonly accent: string; readonly border: string; readonly statusBackground: string; readonly selection: string; readonly rowA: string; readonly rowB: string; readonly chip: string; readonly mode: string; readonly success: string; readonly successBg: string; readonly failedBg: string; readonly magenta: string; readonly cyan: string; readonly aqua: string; readonly white: string; readonly response: string; readonly activity: string; readonly activityBg: string; readonly spinner: string; readonly queued: string; readonly chipTeal: string; readonly chipIndigo: string; readonly prompt: string; readonly thinking: string; readonly thinkingDim: string; readonly thinkingBg: string; readonly inputBorder: string; readonly userBorder: string; readonly toolBorder: string; readonly toolOutput: string; readonly modalBorder: string; readonly diffAdd: string; readonly diffDel: string; readonly diffGutter: string; readonly diffAddBg: string; readonly diffDelBg: string; readonly synKeyword: string; readonly synString: string; readonly synComment: string; readonly synNumber: string; readonly synFunction: string; readonly synType: string; readonly synProperty: string; readonly synOperator: string; readonly synRegex: string; } export declare function themeFor(hint: ThemeHint): Theme;