import { type ChalkInstance } from 'chalk'; declare const darkPaletteDef: { brand: ChalkInstance; mint: ChalkInstance; shell: ChalkInstance; goblin: ChalkInstance; user: ChalkInstance; caret: ChalkInstance; tool: ChalkInstance; chrome: ChalkInstance; syntaxString: ChalkInstance; toolArg: ChalkInstance; thinking: ChalkInstance; success: ChalkInstance; error: ChalkInstance; warning: ChalkInstance; plan: ChalkInstance; bypass: ChalkInstance; meta: ChalkInstance; info: ChalkInstance; fileRef: ChalkInstance; heading: ChalkInstance; label: ChalkInstance; dim: ChalkInstance; bold: ChalkInstance; italic: ChalkInstance; diffAdd: ChalkInstance; diffRemove: ChalkInstance; diffHunk: ChalkInstance; }; export type ThemePalette = { [K in keyof typeof darkPaletteDef]: ChalkInstance; }; export declare const darkPalette: ThemePalette; export declare const lightPalette: ThemePalette; export declare const umberPalette: ThemePalette; export declare const palette: ThemePalette; export {};