import React from "react";
import "./EmptyNotice.scss";
interface Props {
    title: String;
    className?: String;
}
export default function EmptyNotice({ title, className }: Props): React.JSX.Element;
export {};
