export interface MessageRoomProps {
    target: string;
    name: string;
    description: string;
    image: {
        src: string;
        alt: string;
    };
    members: number;
    tag: string;
}
export declare function MessageRoom({ target, name, description, image, members, tag, }: MessageRoomProps): import("react/jsx-runtime").JSX.Element;
