///
import { App } from '../lib/app';
import { Store } from '../lib/store';
import { Runner } from '../lib/runner';
import { INotebook, INote } from '@wix/quix-shared';
export declare const addRunner: (app: App, store: Store, id: string, runner: Runner, note: INote, notebook: INotebook) => void;
export declare const removeRunner: (id: string) => void;
export declare const getRunner: (id: string) => any;
export declare const getRunners: () => import("lodash").Dictionary;