/** * Copyright 2020, Verizon Media * Licensed under the terms of the MIT license. See accompanying LICENSE.md file for terms. */ import React from 'react'; export declare const DnAlert: React.FC; export declare enum DnAlertStatus { default = "default", info = "info", warning = "warning", success = "success", danger = "danger" } export interface DnAlertProps { icon: string; title: string; context?: string; status?: DnAlertStatus; isBlock?: boolean; className?: string; } //# sourceMappingURL=DnAlert.d.ts.map