import { TulAlertType } from '../../tul-static-alert/types/alert-type.type'; import { TulAlertColor } from '../../tul-static-alert/types/alert-color.type'; export declare class AlertConfig { message: string; description?: string | null; tulType: TulAlertType; tulColor: TulAlertColor; isClosable: boolean; withIcon: boolean; button?: AlertButton; } export interface AlertButton { text: string; action: ({ buttonPressed }: any) => void; }