import { TulAlertType } from '../../tul-static-alert/types/alert-type.type'; import { TulAlertColor } from '../../tul-static-alert/types/alert-color.type'; export declare class ToastConfig { message: string; description?: string | null; tulType: TulAlertType; tulColor: TulAlertColor; isBanner: boolean; isClosable: boolean; withIcon: boolean; }