@coinmeca/ui
Version:
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
11 lines • 331 B
TypeScript
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