@atlaskit/tokens
Version:
Design tokens are the single source of truth to name and store design decisions.
6 lines (5 loc) • 321 B
TypeScript
import { type ThemeColorModes } from '../theme-color-modes';
import { type ThemeOptionsSchema } from '../theme-options-schema';
type ThemeAttributeId = 'light' | 'dark';
export declare function findMissingCustomStyleElements(UNSAFE_themeOptions: ThemeOptionsSchema, mode: ThemeColorModes): ThemeAttributeId[];
export {};