export type ColorTheme = 'red' | 'green' | 'blue' | 'yellow' | 'purple';
export declare const themes: Record<ColorTheme | 'default', string[]>;
/** @internal */
export declare const isValidTheme: (theme: string) => theme is ColorTheme;
