declare const GROUP_NAME = "card";
declare enum Colors {
    Blue = "blue",
    Error = "error",
    Green = "green",
    Pink = "pink",
    Purple = "purple",
    Success = "success",
    Warning = "warning",
    Yellow = "yellow"
}
declare const DEFAULT_COLOR = Colors.Pink;

export { Colors, DEFAULT_COLOR, GROUP_NAME };
