declare const Breakpoints: {
    xxs: "xxs";
    xs: "xs";
    sm: "sm";
    md: "md";
    lg: "lg";
    xl: "xl";
    xxl: "xxl";
};
declare const PREFIX = "fractal";
declare const LIGHT_BG_COLORS_CLASSNAMES: {
    blue: string;
    green: string;
    pink: string;
    purple: string;
    white: string;
    yellow: string;
    error: string;
    success: string;
    warning: string;
};
declare const MEDIUM_BG_COLORS_CLASSNAMES: {
    blue: string;
    green: string;
    pink: string;
    purple: string;
    white: string;
    yellow: string;
    error: string;
    success: string;
    warning: string;
};
declare const DARK_BG_COLORS_CLASSNAMES: {
    blue: string;
    green: string;
    pink: string;
    purple: string;
    white: string;
    yellow: string;
    error: string;
    success: string;
    warning: string;
};
declare const LIGHT_FG_COLORS_CLASSNAMES: {
    blue: string;
    green: string;
    pink: string;
    purple: string;
    white: string;
    yellow: string;
    error: string;
    success: string;
    warning: string;
};
declare const MEDIUM_FG_COLORS_CLASSNAMES: {
    blue: string;
    green: string;
    pink: string;
    purple: string;
    white: string;
    yellow: string;
    error: string;
    success: string;
    warning: string;
};
declare const DARK_FG_COLORS_CLASSNAMES: {
    blue: string;
    green: string;
    pink: string;
    purple: string;
    white: string;
    yellow: string;
    error: string;
    success: string;
    warning: string;
};
declare enum Themes {
    Dark = "dark",
    Light = "light"
}
declare const DEFAULT_THEME = Themes.Light;

export { Breakpoints, DARK_BG_COLORS_CLASSNAMES, DARK_FG_COLORS_CLASSNAMES, DEFAULT_THEME, LIGHT_BG_COLORS_CLASSNAMES, LIGHT_FG_COLORS_CLASSNAMES, MEDIUM_BG_COLORS_CLASSNAMES, MEDIUM_FG_COLORS_CLASSNAMES, PREFIX, Themes };
