/**
* Community status
*/
export declare type CommunityStatus = {
/**
* Community is still in development
*/
UnderConstruction: 'UnderConstruction';
/**
* Community is live
*/
Live: 'Live';
/**
* Community is inactive
*/
DownForMaintenance: 'DownForMaintenance';
};