import { INotebook, INote } from '@wix/quix-shared'; export declare const setNotebook: (notebook: INotebook) => { type: string; notebook: INotebook; }; export declare const setError: (error: any) => { type: string; error: any; }; export declare const queueNote: (note: INote) => { type: string; note: import("@wix/quix-shared/entities/note").IBaseNote; }; export declare const setNote: (note: INote) => { type: string; note: import("@wix/quix-shared/entities/note").IBaseNote; }; export declare const toggleMark: (note: INote) => { type: string; note: import("@wix/quix-shared/entities/note").IBaseNote; }; export declare const unmarkAll: () => { type: string; }; export declare const setSaving: (saving: boolean) => { type: string; saving: boolean; };