import { Config } from '../lib/core'; import { IFile, IFolder, INotebook, SearchResult, IUser, IHistory, IDeletedNotebook } from '@wix/quix-shared'; export declare const config: Config<{ apiBasePath: string; }>; export declare const users: () => Promise; export declare const history: (options: any) => Promise; export declare const files: () => Promise; export declare const folder: (id: string) => Promise; export declare const notebook: (id: string) => Promise; export declare const favorites: () => Promise; export declare const search: (text: string, offset: number, total: number) => Promise; export declare const deletedNotebooks: () => Promise; export declare const db: (type: string) => Promise; export declare const dbColumns: (type: string, catalog: string, schema: string, table: string) => Promise; export declare const dbSearch: (type: string, q: string) => Promise;