export declare const MODE_CLOUD = "cloud"; export declare const MODE_LOCAL = "local"; export declare const PRESET_DOCS = "docs"; export declare const PRESET_SHOPIFY = "shopify"; export declare const COLOR_SCHEME_LIGHT = "light"; export declare const COLOR_SCHEME_DARK = "dark"; export declare const COLOR_SCHEME_SYSTEM = "system"; export declare const SEARCH_INPUT_PLACEHOLDER_DEFAULT = "Search..."; export declare const SEARCH_RESULTS_PLACEHOLDER_DEFAULT = "Search something..."; export declare const NO_RESULTS_TEXT_VARIABLE = "@TERM@"; export declare const NO_RESULTS_TEXT_DEFAULT = "No results found for \"@TERM@\""; export declare const SHOW_FOOTER_KEYBOARD_SHORTCUTS = true; export declare const SHOW_POWERED_BY = true; export declare const RESULTS_NUMBER = 10; export declare const EVENT_SEE_ALL = "orama-wc-searchbox:see-all"; export declare const EVENT_SEE_ITEM = "orama-wc-searchbox:see-item"; export declare const EVENT_SHOW_SEARCHBOX = "orama-wc-searchbox:show"; export declare const EVENT_SEARCH_BUTTON_CLICK = "orama-wc-searchbutton:click"; export declare const PRESET_DOCS_SCHEMA: { title: string; content: string; path: string; section: string; category: string; version: string; }; export declare const PRESET_SHOPIFY_SCHEMA: { title: string; tags: string; description: string; availableForSale: string; priceRange: { max: string; min: string; }; }; export declare const PresetSchemaMap: { docs: { title: string; content: string; path: string; section: string; category: string; version: string; }; shopify: { title: string; tags: string; description: string; availableForSale: string; priceRange: { max: string; min: string; }; }; }; export declare const DEFAULT_RETURNABLE_PROPS: { path: string; title: string; description: string; section: string; category: string; };