import { Link, LinkEntity } from './LinkEntity'; export interface AttachmentEntity { id: string; type: string; description?: string; _links: { download: LinkEntity; }; } export interface Attachment { id: string; type: AttachmentType; description?: string; linkToResource: string; links: { download: Link; }; } export declare enum AttachmentType { LESSON_PLAN = "LESSON_PLAN", FINAL_PROJECT = "FINAL_PROJECT", ACTIVITY = "ACTIVITY" } export interface AttachmentRequest { type: string; linkToResource: string; description?: string; } export declare const getAttachmentType: (value: string) => AttachmentType | undefined;