import { AdminDoapBase } from "./admin-doap-base";
/**
 * @category Model Admin
 */
export declare class DefaultObjectAccessPermission extends AdminDoapBase {
    /**
     * The group that the permission applies to.
     */
    forGroup?: string;
    /**
     * The property that the permission applies to.
     */
    forProperty?: string;
    /**
     * The resource class that the permission applies to.
     */
    forResourceClass?: string;
}
