import { PropsWithChildren } from 'react';
export interface MessageRoomListProps {
    title?: string;
    className?: string;
}
export declare function MessageRoomList({ title, children, className, }: PropsWithChildren<MessageRoomListProps>): import("react/jsx-runtime").JSX.Element;
