import React from 'react'; export declare type NotificationShowType = 'list' | 'modal'; export declare type NotificationListProps = { EmptyContaniner?: React.ReactNode; className?: string; Notification?: React.ComponentType; style?: React.CSSProperties; }; export declare const NotificationList: React.FC;