import { SceneOptions } from 'telegraf/typings/scenes/base'; export interface SceneMetadata { sceneId: string; type: 'base' | 'wizard'; options?: SceneOptions; } export interface WizardStepMetadata { step: number; }