export declare class CreateStepDto {
    type: 'video' | 'text' | 'question' | 'questionList' | 'teleprompter';
    title?: string;
    content?: string;
    teleprompterText?: string;
    questionData?: any;
    questionsList?: {
        question: string;
    }[];
}
