import { clear, show, config } from './methods'; export type { ToastShowProps, ToastHandler } from './methods'; declare const Toast: { show: typeof show; clear: typeof clear; config: typeof config; }; export default Toast;