export type { ToastHandler } from './methods'; export type { ToastProps } from './Toast'; declare const Toast: { show: (props: string | Omit) => import("./methods").ToastHandler; clear: () => void; config: (props: Pick>) => void; }; export default Toast;