import { Control, type IControlOptions } from "./Control"; export interface IMobileViewOptions extends IControlOptions { onNavigate?: (view: string, animation: string) => void; } export declare class MobileView extends Control { constructor(element: HTMLElement | string, options: IMobileViewOptions); private bind; }