import { Toast as InnerToast, info, success } from './toast'; declare type _Toast = typeof InnerToast; interface Toast extends _Toast { info: typeof info; success: typeof success; } declare const Toast: Toast; export default Toast;