type Colors = string;
type ColorsPallet = {
    10: Colors;
    20: Colors;
    30: Colors;
    40: Colors;
    50: Colors;
    60: Colors;
    70: Colors;
    80: Colors;
    90: Colors;
    100: Colors;
};
type NeutralColors = {
    white: Colors;
    black: Colors;
    transparent?: Colors;
};
type ColorGroup = {
    neutral: NeutralColors;
    primary: ColorsPallet;
    accent: ColorsPallet;
    gray: ColorsPallet;
    success: ColorsPallet;
    danger: ColorsPallet;
    coolGray: ColorsPallet;
    warmGray: ColorsPallet;
    blue: ColorsPallet;
    warning: ColorsPallet;
    info: ColorsPallet;
    red: ColorsPallet;
    cyan: ColorsPallet;
    magenta: ColorsPallet;
    orange: ColorsPallet;
    purple: ColorsPallet;
    green: ColorsPallet;
    teal: ColorsPallet;
    yellow: ColorsPallet;
};
export type PalletsType = {
    default: ColorGroup;
    hover: ColorGroup;
};
export {};
//# sourceMappingURL=BaseTokens.d.ts.map