import { UserGroupCombineMethod } from "./user-group-combine-method";
export interface IUserGroupConfiguration {
    combineMethod: UserGroupCombineMethod;
    readonly userGroupIds: Array<number>;
    readonly children: Array<IUserGroupConfiguration>;
}
export declare class UserGroupConfiguration implements IUserGroupConfiguration {
    combineMethod: UserGroupCombineMethod;
    userGroupIds: Array<number>;
    children: Array<IUserGroupConfiguration>;
}
