import type { PropsWithChildren, ReactNode } from "react"; import { ClassName } from "@helpers/types"; export interface EmptyStateProps { text?: string; icon?: ReactNode; } export interface NotificationItemProps extends PropsWithChildren, ClassName { isUnread?: boolean; } export interface ContainerProps extends PropsWithChildren, ClassName { }