export { datalayerColors } from './datalayerColors'; export { spatialColors } from './spatialColors'; export { lovelyColors } from './lovelyColors'; export { matrixColors } from './matrixColors'; export { earthColors } from './earthColors'; export { sandColors } from './sandColors'; export { ivoryColors } from './ivoryColors'; export { sunColors } from './sunColors'; import type { ThemeVariant } from '../themeRegistry'; /** * Themed color palettes — maps each `ThemeVariant` to its corresponding * color object so consumers can pick the right palette at runtime. * * Usage: * ```ts * import { themedColors } from '@datalayer/primer-addons/lib/theme'; * const colors = themedColors[themeVariant]; // Record * ``` */ export declare const themedColors: Record>;