import type { SearchModelProperties as CommonSearchModelProperties } from "../common/SearchModelProperties.js";
/**
 * The type of search results.
 */
export type SearchForType = "features" | "addresses" | "features-and-addresses" | "addresses-and-features";
/**
 * @inheritdoc
 */
export interface SearchModelProperties extends CommonSearchModelProperties {
    /**
     * Determines what the search component should search for.
     */
    searchFor?: SearchForType;
}
