import { CardLightConfig } from './card-light-config'; /** * Alerts can be used to provide feedback messages. */ export declare class CardLight { /** * A flag indicating if a given alert can be dismissed (closed) by a user. If this flag is set, a close button (in a * form of an ×) will be displayed. */ isBackColor: boolean; /** * Alert type (CSS class). Bootstrap 4 recognizes the following types: "success", "info", "warning", "danger", * "primary", "secondary", "light", "dark". */ cardTitle: string; constructor(config: CardLightConfig); }