import type { StyleIntent, Theme } from "./types.js"; export interface Themes { default: Theme; dim: Theme; bright: Theme; solarized: Theme; monochrome: Theme; contrast: Theme; [key: string]: Theme; } export declare const themes: Themes; export type Styler = (text: string, style?: StyleIntent) => string; /** * Create a Chalk-based styling helper that applies StyleIntent safely. */ export declare function createStyler({ color }: { color: boolean; }): Styler;