interface Color {
    50: string;
    100: string;
    200: string;
    300: string;
    400: string;
    500: string;
    600: string;
    700: string;
    800: string;
    900: string;
    A100?: string;
}
declare const teal: Color;
declare const fuchsia: Color;
declare const green: Color;
declare const bluishCyan: Color;
declare const yellowOrange: Color;
declare const pinkishRed: Color;
declare const grey: Color;
declare const stone: Color;

export { bluishCyan, fuchsia, green, grey, pinkishRed, stone, teal, yellowOrange };
