import type { FC, PropsWithChildren } from "react"; import type { ContainerProps, EmptyStateProps, NotificationItemProps } from "./Notification.interface"; export declare const NotificationItem: FC; export declare const EmptyState: FC; export declare const Container: FC; export declare const Notification: { ({ children }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; Item: FC; EmptyState: FC; Container: FC; }; export default Notification;