import { AlertType } from '../models/alert-type'; export declare enum ComponentType { Primary = 1, Success = 2, Delete = 3, Warning = 4, Info = 5 } export declare enum Color { Primary = 1, Secondary = 2, Success = 3, Danger = 4, Warning = 5, Info = 6, Dark = 8 } export declare class BootstrapHelper { static cssColor(color?: Color | null): "" | "bg-primary text-white" | "bg-secondary text-white" | "bg-success text-white" | "bg-danger text-white" | "bg-warning text-dark" | "bg-info text-dark" | "bg-dark text-white"; static cssIcon(type: ComponentType): string | null; static cssButton(type: ComponentType): string; static cssAlert(type?: AlertType | null): string; static cssAlertIcon(type?: AlertType | null): string; }