import { Store } from '../lib/store'; import { App } from '../lib/app'; import { IFile, INotebook, INote, IFilePathItem } from '@wix/quix-shared'; export declare const addNotebook: (store: Store, app: App, parentOrPath: IFile | IFilePathItem[], options: { addNote: boolean; }, props?: Partial) => Promise; export declare const addNote: (store: Store, notebookId: string, type: string, props?: Partial, onCreate?: (note: INote) => void) => Promise; export declare const addNotebookByNamePath: (store: Store, app: App, namePath: string[]) => Promise; export declare const copyNotebook: (store: Store, app: App, parentOrPath: IFile | IFilePathItem[], sourceNotebook: INotebook) => Promise; export declare const copyNote: (store: Store, app: App, targetNotebook: INotebook, sourceNote: INote) => Promise; export declare const deleteNotebook: (store: Store, app: App, notebook: INotebook) => Promise; export declare const saveQueuedNotes: (store: Store) => any; export declare const hasQueuedNotes: (store: Store) => boolean; export declare const goToNotebook: (app: App, notebook: INotebook, params?: { isNew?: boolean; note?: string; }, options?: any) => void; export declare const goToExamples: (app: App) => void;