import { Runner } from '../../lib/runner'; import { INotebook, INote } from '@wix/quix-shared'; export declare const setInputSearchText: (inputSearchText: string, origin?: 'user' | 'machine') => { type: string; inputSearchText: string; origin: "user" | "machine"; }; export declare const setUrlSearchText: (urlSearchText: string, origin?: 'user' | 'machine') => { type: string; urlSearchText: string; origin: "user" | "machine"; }; export declare const setSearchPage: (searchPage: number, origin?: 'user' | 'machine') => { type: string; searchPage: number; origin: "user" | "machine"; }; export declare const setImportType: (importType: string, origin?: 'user' | 'machine') => { type: string; importType: string; origin: "user" | "machine"; }; export declare const setImportValue: (importValue: string, origin?: 'user' | 'machine') => { type: string; importValue: string; origin: "user" | "machine"; }; export declare const addRunner: (id: string, runner: Runner, note: INote, notebook: INotebook, origin?: 'user' | 'machine') => { type: string; id: string; origin: "user" | "machine"; runner: Runner; note: import("@wix/quix-shared/entities/note").IBaseNote; notebook: INotebook; }; export declare const removeRunner: (id: string, origin?: 'user' | 'machine') => { type: string; id: string; origin: "user" | "machine"; }; export declare const setStats: (stats: { trashBinCount: number; }) => { type: string; stats: { trashBinCount: number; }; };