1 | import { ToastProps } from './toast';
|
2 | export declare type ToastShowProps = Omit<ToastProps, 'visible'>;
|
3 | export declare type ToastHandler = {
|
4 | close: () => void;
|
5 | };
|
6 | export declare function show(p: ToastShowProps | string): ToastHandler;
|
7 | export declare function clear(): void;
|
8 | export declare function config(val: Pick<ToastProps, 'duration' | 'position' | 'maskClickable'>): void;
|