import { type Notify as N } from "../../../contexts/Notification";
type Content = N & {
    type?: "toast" | "notify" | "divider";
};
export default function Notification(props: {
    list?: Content[];
    count?: number;
    onBlur?: Function;
}): import("react").JSX.Element;
export {};
//# sourceMappingURL=Notification.d.ts.map