// Copyright © 2022-2026 Partium, Inc. DBA Partium export declare enum SEARCH_RESULT_STATUS { CREATED = "created", RUNNING = "running", FINISHED = "finished" } export declare enum ASYNC_TAG_STATUS { PENDING = "pending", RECEIVED = "received", WILL_NOT_RECEIVE = "will-not-receive" } export declare enum ASYNC_RESULT_STATUS { PENDING = "pending", RECEIVED = "received", WILL_NOT_RECEIVE = "will-not-receive" } export declare enum SMART_FILTERS_STATUS { PENDING = "pending", RECEIVED = "received", WILL_NOT_RECEIVE = "will-not-receive" } /** * Status of a search session. * * @deprecated with the new search, the SDK will not save the status of a search-session anymore. This has to be managed on the Application level. */ export declare class SearchResultStatus { status: SEARCH_RESULT_STATUS; asyncTagsStatus: ASYNC_TAG_STATUS; asyncResultsStatus: ASYNC_RESULT_STATUS; asyncSmartFiltersStatus: SMART_FILTERS_STATUS; constructor(init?: Partial); }