import Result from '../../models/Result'; export interface AddDemoEventParams { modelId: string; AnimationType: string; loopMode: boolean; coordType: number; coord: []; coordTypeZ: number; coordZ: number; rotation: number; } export interface UpdateDemoCoordParams { modelId: string; coordType: number; coord: []; coordTypeZ: number; coordZ: number; rotation: number; } export interface SetDemoStateParams { modelId: string; playingState: string; } export interface SetDemoDisplayParams { modelId: string; mainView: string; } declare class DemoModel { private static get className(); static addDemoEvent: (params: AddDemoEventParams) => Promise>; static updateDemoCoord: (params: UpdateDemoCoordParams) => Promise>; static setDemoState: (params: SetDemoStateParams) => Promise>; static setDemoDisplay: (params: SetDemoDisplayParams) => Promise>; } export default DemoModel;