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; Preview?: React.ComponentType; DefaultEmptyStateIndicator?: React.ComponentType; Paginator?: React.ComponentType; visible?: boolean; }; export declare const ContactList: (props: PropsWithChildren) => JSX.Element;