import type { DerivativeFunc, TokenType } from './interface'; /** * Theme with algorithms to derive tokens from design tokens. * Use `createTheme` first which will help to manage the theme instance cache. */ export default class Theme { private derivatives; readonly id: number; constructor(derivatives: DerivativeFunc | DerivativeFunc[]); getDerivativeToken(token: DesignToken): DerivativeToken; }