/// interface IProps { handleClose: () => void; message: string; type: 'error' | 'info' | 'warning' | 'success'; isShow: boolean; } export default function BaseSnackbar(props: IProps): JSX.Element; export {};