import { ExecutionOutputStore } from "./ExecutionOutput"; import { WorkflowStore } from './Workflow'; import { NavBar } from './NavBar'; import { UtilityBar } from './UtilityBar'; import { SystemStore } from './System'; import { RundeckClient } from "@rundeck/client"; import { Releases } from "./Releases"; import { ProjectStore } from "./Projects"; import { NewsStore } from './News'; import { PluginStore } from './Plugins'; import { WebhookStore } from './Webhooks'; import { ThemeStore } from "./Theme"; export declare class RootStore { readonly client: RundeckClient; executionOutputStore: ExecutionOutputStore; workflowStore: WorkflowStore; navBar: NavBar; utilityBar: UtilityBar; releases: Releases; system: SystemStore; projects: ProjectStore; news: NewsStore; plugins: PluginStore; webhooks: WebhookStore; theme: ThemeStore; constructor(client: RundeckClient); }