import { Lesson } from '../lessons/lesson.entity';
export type StepType = 'video' | 'text' | 'question' | 'questionList' | 'teleprompter';
export declare class Step {
    id: number;
    type: StepType;
    title: string;
    content: string;
    videoPath: string;
    teleprompterText: string;
    order: number;
    questionData: any;
    lesson: Lesson;
}
