/**
 * A group of Knora users.
 *
 * @category Model Admin
 */
export declare class Group {
    /**
     * A description of a user group
     */
    description?: string;
    /**
     * The name of the enclosing object.
     */
    name: string;
    /**
     * Exists and is true if users can add themselves to the project or group.
     */
    selfjoin: boolean;
    /**
     * The status of the user / group / project. It is false if the entity has been deactivated (deleted).
     */
    status?: boolean;
}
