import { Resource } from './resource.entity'; import { User } from './user.entity'; import { ResourceUsageAction } from './resourceUsage.type'; import { BillingTransaction } from './billing-transaction.entity'; import { Project } from './project'; import { FormSubmission } from './form'; export declare class ResourceUsage { id: number; usageAction: ResourceUsageAction; resourceId: number; userId: number | null; startTime: Date; startNotes: string | null; endTime: Date | null; endNotes: string | null; resource: Resource; user: User | null; usageInMinutes: number; billingTransaction: BillingTransaction | null; projectId: number | null; project: Project | null; formSubmissions: FormSubmission[]; isFinalized: boolean; supervisorUserId: number | null; supervisorUser: User | null; }