import { FC } from 'react';
interface PropsType {
    type: string;
    msg: string;
    duration?: number;
}
declare const Snackbar: FC<PropsType>;
export default Snackbar;
