import type { ThemeToken } from '../../entities';
export type ThemeSpacingTokenProperties = {
    '4xs': string;
    '3xs': string;
    '2xs': string;
    xs: string;
    s: string;
    m: string;
    l: string;
    xl: string;
    '2xl': string;
    '3xl': string;
    '4xl': string;
};
export type ThemeSpacingTokenVariable = keyof ThemeSpacingTokenProperties;
export type ThemeSpacingToken = ThemeToken<ThemeSpacingTokenProperties>;
