import { WidgetType } from '../widgets'; interface SceneWidgets { name: string; desc?: string; types: WidgetType[]; } export declare const ocrCategory: SceneWidgets; export declare enum SceneType { normal = 0, questionnaire = 1, signUp = 2, exam = 3, appoint = 4, vote = 5, gain = 6 } export declare const applySceneType: (type: SceneType) => void; export declare const isExamScene: () => boolean; export declare const isAppointScene: () => boolean; export declare const getSceneType: () => SceneType; export declare const sceneConfigList: import('vue').ComputedRef; export declare const getScenenName: () => string; export declare const getSceneHeaderImage: () => string; export declare const getSceneFormTitle: () => string; export declare const getSceneFormDesc: () => string; export declare const getSceneFormName: (sceneTypeVal: any) => any; export {};