import { GroupEntity, OrganizationEntity, UserEntity } from '../..'; import { AUTHORIZATION_APPROVAL_STATUS, AUTHORIZATION_EFFECT } from '../enum'; export declare class BaseClassDto { reason?: string; approvalStatus?: AUTHORIZATION_APPROVAL_STATUS; policyVersion?: string; affectedUsers?: UserEntity[]; effect?: AUTHORIZATION_EFFECT; actions?: string[]; resources?: string[]; approvedOrDeniedAt?: Date; expiresAt?: number; requestedByUser?: UserEntity; organization?: OrganizationEntity; groups?: GroupEntity[]; createdByUser?: UserEntity; }