web3-mq-react
Version:
web3-mq-react-components
13 lines (12 loc) • 688 B
TypeScript
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<ChannelListMessengerProps>;
Preview?: React.ComponentType<ChannelPreviewProps>;
DefaultEmptyStateIndicator?: React.ComponentType<EmptyStateIndicatorProps>;
Paginator?: React.ComponentType<PaginatorProps>;
};
export declare const ChannelList: (props: PropsWithChildren<ChannelListProps>) => JSX.Element;