import React, { PropsWithChildren } from 'react'; import { ChannelListMessengerProps } from './ChannelListMessenger'; import { ChannelPreviewProps } from '../ChannelPreview'; import { EmptyStateIndicatorProps } from '../EmptyStateIndicator'; import { PaginatorProps } from '../Paginator'; export declare type ChannelListProps = { List?: React.ComponentType; Preview?: React.ComponentType; DefaultEmptyStateIndicator?: React.ComponentType; Paginator?: React.ComponentType; }; export declare const ChannelList: (props: PropsWithChildren) => JSX.Element;