import tokens from '../artifacts/token-names'; import { type ThemeColorModes, type ThemeOptionsSchema } from '../theme-config'; type Token = keyof typeof tokens; type ThemeAttributeId = 'light' | 'dark'; export declare function findMissingCustomStyleElements(UNSAFE_themeOptions: ThemeOptionsSchema, mode: ThemeColorModes): ThemeAttributeId[]; export declare function reduceTokenMap(tokenMap: { [key in Token]?: number | string; }, themeRamp: string[]): string; export { limitSizeOfCustomStyleElements } from './limit-size-of-custom-style-elements';