import { CreatePermission } from "./create-permission";
/**
 * @category Internal
 */
export declare abstract class CreateAdminDoapBase {
    /**
     * The permissions id, if provided.
     */
    id?: string;
    /**
     * The project that the permission applies to.
     */
    forProject: string;
    /**
     * The permissions granted by an AdministrativePermission.
     */
    hasPermissions: CreatePermission[];
}
