import type { ThemeToken } from '../../entities';
export type ThemeSpaceTokenProperties = {
    '8xl': string;
    '7xl': string;
    '6xl': string;
    '5xl': string;
    '4xl': string;
    '3xl': string;
    '2xl': string;
    xl: string;
    l: string;
    m: string;
    s: string;
    xs: string;
};
export type ThemeSpaceTokenVariable = keyof ThemeSpaceTokenProperties;
export type ThemeSpaceToken = ThemeToken<ThemeSpaceTokenProperties>;
