import { App } from './lib/app'; import { Store } from './lib/store'; export declare const Time: { Format: string; }; export declare const DB: { SampleLimit: number; RootName: string; }; export declare const Search: { ResultsPerPage: number; MaxPages: number; MaxPaginationButtons: number; PaginationEdgePages: number; PaginationMiddlePages: number; }; export declare const Import: { FolderName: string; }; export declare const QuixFolder: { id: string; name: string; owner: string; ownerDetails: any; }; export declare const ExamplesNotebook: { id: string; name: string; owner: string; ownerDetails: any; }; export declare const HeaderMenu: (scope: any) => ({ title: string; targetState: string; activeStates: string[]; activeCondition: (app: App, store: Store, state: string, id: string) => Promise; } | { title: string; targetState: string; activeCondition: any; activeStates?: undefined; })[];