declare const CLASS_PREFIX = "md-alert-banner";
declare const COLORS: {
    DEFAULT: string;
    ERROR: string;
    SUCCESS: string;
    THEME: string;
    WARNING: string;
};
declare const SIZES: {
    DEFAULT: string;
    SMALL: string;
};
declare const DEFAULTS: {
    COLOR: string;
    IS_CENTERED: boolean;
    IS_GROWN: boolean;
    IS_PILLED: boolean;
    IS_STATIC: boolean;
    SIZE: string;
};
declare const STYLE: {
    button: string;
    buttons: string;
    image: string;
    label: string;
    wrapper: string;
};
export { CLASS_PREFIX, COLORS, DEFAULTS, SIZES, STYLE };
