import * as DEFAULT_SWATCH from './consts/default-swatch.js'; import type { TokensBase } from './types/tokens-base.js'; import { type ColorFormat } from './utils/convert-color.js'; export type PresetOrCustom = T | (string & Record); export interface ConfigOptions { brand: PresetOrCustom; accent: PresetOrCustom<'brand' | 'gray'>; system?: typeof DEFAULT_SWATCH.system; format?: ColorFormat; } export declare function getColorsBase({ brand, accent, system, format, }: ConfigOptions): TokensBase;