import { TabViewModel, UITabView } from './TabViewModel';
/**
 * This is the main class to handle tabs in the app.
 * An app will have many tabs
 */
export declare class TabsModel {
    tabViews: Record<string, TabViewModel>;
    constructor();
    get: (tabId: string) => TabViewModel | undefined;
    createTab: (tab: UITabView) => void;
}
