export type AlertComponentType = "primary" | "secondary" | "success" | "danger" | "warning" | "info";
export type AlertComponentStyle = "filled" | "outline" | "outline-coloured";

export interface AdminAlertComponentProps {
    type: AlertComponentType;
    style: AlertComponentStyle;
    class?: string;
    iconClass?: string;
    isDismissible?: boolean;
}
