import { Config, LocalOptions, TransformedToken } from 'style-dictionary/types'; export type TokenWithCTIAttrs = TransformedToken & { attributes: { category: string; type: string; item: string; }; }; export type BreakpointToken = TransformedToken & { $value: string; $type: 'dimension'; }; export type TypographyGroup = { default?: TokenWithCTIAttrs; responsive: Map; }; export type ProcessorOptions = Config & LocalOptions; export type Prefixes = { classPrefix: string; variablePrefix: string; };