import React from 'react'; declare type Props = { children: React.ReactNode; onClose: () => void; isShown: boolean; }; declare const Toast: (props: Props) => JSX.Element | null; export default Toast;