import AclPermission from './AclPermission'; /** * @export * @class AclEntry */ export declare class AclEntry { /** * Deprecation notice: The value of this property is not being used. It can be chosen arbitrarily or not set at all * @type {string} * @memberof AclEntry */ scope?: string; /** * @type {AclPermission} * @memberof AclEntry */ permission?: AclPermission; constructor(obj?: Partial); } export default AclEntry;