web3-mq-react
Version:
web3-mq-react-components
14 lines (13 loc) • 712 B
TypeScript
import React, { PropsWithChildren } from 'react';
import { ContactListMessengerProps } from './ContactListMessenger';
import { ContactPreviewProps } from '../ContactPreview';
import { EmptyStateIndicatorProps } from '../EmptyStateIndicator';
import { PaginatorProps } from '../Paginator';
export declare type ContactListProps = {
List?: React.ComponentType<ContactListMessengerProps>;
Preview?: React.ComponentType<ContactPreviewProps>;
DefaultEmptyStateIndicator?: React.ComponentType<EmptyStateIndicatorProps>;
Paginator?: React.ComponentType<PaginatorProps>;
visible?: boolean;
};
export declare const ContactList: (props: PropsWithChildren<ContactListProps>) => JSX.Element;