import { Theme } from "./Theme.types.cjs";
export declare const themeColors: Record<Theme, Record<string, string>>;
/** @deprecated OLED values are canonical on dark; same as `themeColors[Theme.Dark]`. */
export declare const pureBlackThemeColors: Record<string, string>;
/**
 * Resolves flattened theme colors.
 *
 * @param theme - Light or dark theme.
 * @param _isPureBlack - Unused; kept for client call-site compatibility
 * (OLED values are now canonical on dark).
 * @returns Flattened color map for the theme.
 */
export declare const getThemeColors: (theme: Theme, _isPureBlack?: boolean) => Record<string, string>;
//# sourceMappingURL=colors.d.cts.map