import { CommunityStatus } from './CommunityStatusEnum';
/**
 * A definition of a community
 */
export declare type CommunityInfo = {
    /**
     * Community name
     */
    name: string;
    /**
     * Community ID
     */
    id: string;
    /**
     * Community Status (Active/Inactive/DownForMaintainance)
     */
    status?: CommunityStatus;
};
