import { searchboxConfig } from '../defaultConfig'; export declare enum Projects { orama = "orama", recipes = "recipes", videogames = "videogames" } export interface Project { framework: string; cloud: boolean; colorScheme: 'light' | 'dark' | 'system'; theme: 'primary' | 'secondary' | undefined; themeConfig: typeof searchboxConfig.ui.theme; cloudConfig?: { url: string; key: string; }; facetProperty?: string; keepOpen?: boolean; resultsMap: { title?: string; description?: string; section?: string; category?: string; path?: string; }; } declare const config: Record; export declare const defaultConfig: Project; export default config;