/// import { BaseProps } from '../Common'; export declare type ToastConfig = Omit & { content: JSX.Element; duration?: number; }; export declare const render: (props: ToastConfig) => void;