@web3mq/react-components
Version:
web3mq-react-components
13 lines (12 loc) • 517 B
TypeScript
import React from 'react';
import { PaginatorProps } from '../Paginator';
export declare type NotificationShowType = 'list' | 'modal';
export declare type NotificationListProps = {
List?: React.ComponentType<NotificationListProps>;
EmptyContaniner?: React.ReactNode;
className?: string;
Notification?: React.ComponentType<any>;
Paginator?: React.ComponentType<PaginatorProps>;
style?: React.CSSProperties;
};
export declare const NotificationList: React.FC<NotificationListProps>;