import { Frame } from './frame-api.options'; export interface Instruction { readonly id: string; readonly title: string; readonly shortDescription: string; readonly framerInstructionId: string; readonly frameContainer: Frame; readonly status: InstructionStatus; } export declare enum InstructionStatus { Draft = "DRAFT", Publishing = "PUBLISHING", Published = "PUBLISHED", PublishFailed = "PUBLISH_FAILED", AssessFailed = "ASSESS_FAILED", Assessing = "ASSESSING", Assessed = "ASSESSED" }