import type { DefaultThemeMap } from '@pinceau/theme' import type { PinceauThemePaths } from '@pinceau/outputs' import type * as Utils from './format-utils' /** * Takes a supported key from the ThemeMap and returns a list of tokens supporting that key. */ export type ThemeProperties = K extends keyof DefaultThemeMap ? Utils.FilterStartingWith : never /** * Take a key and gives a list of tokens under that key in configuration. */ export type ThemeTokens = Utils.FilterStartingWith