import Alert from './alert'; type RefAlert = typeof Alert; export interface AlertComponent extends RefAlert { displayName: string; } declare const AlertComp: AlertComponent; export default AlertComp;