import { BooleanValue, Schema } from '@coveo/bueno'; import { type SearchBoxOptions as CoreSearchBoxOptions } from '../../core/search-box/headless-core-search-box-options.js'; export type SearchBoxOptions = Pick & { /** * When set to true, fills the `results` field rather than the `products` field * in the response. It may also include Spotlight Content in the results. * @default false */ enableResults?: boolean; }; type DefaultSearchBoxOptions = Pick; export declare const defaultSearchBoxOptions: Required; export declare const searchBoxOptionDefinitions: { id: import("@coveo/bueno").StringValue; highlightOptions: import("@coveo/bueno").RecordValue; clearFilters: BooleanValue; enableResults: BooleanValue; }; export declare const searchBoxOptionsSchema: Schema>; export {};