export interface IAlertProps { variant: AlertVariants description: string link?: string linkTitle?: string linkIsDisabled?: boolean show: boolean } export type AlertVariants = 'info' | 'success' | 'warning' | 'danger'