/** * Comprehensive theme color definitions * Ported from themes/chalk/theme-definitions.cjs */ export interface ThemeDefinition { name: string; primary: string; secondary: string; success: string; warning: string; error: string; info: string; text: string; dimmed: string; background: string; accent?: string; keyword: string; function: string; string: string; number: string; variable: string; comment: string; } export declare const themeDefinitions: Record; export type ThemeName = keyof typeof themeDefinitions; export declare const themeNames: ThemeName[]; //# sourceMappingURL=themeDefinitions.d.ts.map