/** * Copyright (c) 2025 mol* contributors, licensed under MIT, See LICENSE file for more info. * * @author David Sehnal */ import { PluginComponent } from '../../../mol-plugin-state/component.js'; import { PluginContext } from '../../../mol-plugin/context.js'; import { MVSStoriesContext } from '../context.js'; export declare class MVSStoriesViewerModel extends PluginComponent { private options?; readonly context: MVSStoriesContext; plugin?: PluginContext; mount(root: HTMLElement): Promise; constructor(options?: { context?: { name?: string; container?: object; }; name?: string; } | undefined); } export declare class MVSStoriesViewer extends HTMLElement { private model; connectedCallback(): Promise; disconnectedCallback(): void; constructor(); }