// Copyright © 2022-2026 Partium, Inc. DBA Partium /** * Search-Tags, that can be applied to a search-session. * @deprecated will not be supported anymore in the future */ export declare class SearchTag { value: string; score?: number; type?: string; isAsync?: boolean; constructor(init?: Partial); }