import { ToastProps } from './toast.js'; export type ToastShowProps = Omit; export type ToastHandler = { close: () => void; }; export declare function show(p: ToastShowProps | string): ToastHandler; export declare function clear(): void; export declare function config(val: Pick): void;