import { PropsWithChildren } from 'react';
export interface MessageSpaceProps {
    title?: string;
    target: string;
    name: string;
    description: string;
    image: {
        src: string;
        alt: string;
    };
    memberCount: number;
    tag: string;
    className?: string;
}
export declare function MessageSpace({ title, target, name, description, image, memberCount, tag, children, className, }: PropsWithChildren<MessageSpaceProps>): import("react/jsx-runtime").JSX.Element;
interface MessageSpaceInfoProps {
    target: string;
    name: string;
    description: string;
    image: {
        alt: string;
        src: string;
    };
    memberCount: number;
    alias: string;
}
export declare function MessageSpaceInfo({ target, name, description, image, memberCount, alias, }: MessageSpaceInfoProps): import("react/jsx-runtime").JSX.Element;
export {};
