import { Notification as InnerNotification, info } from './notification'; declare type _Notification = typeof InnerNotification; interface Notification extends _Notification { info: typeof info; } declare const Notification: Notification; export default Notification;