import { IHubSearchResponse } from "./types/IHubSearchResponse"; import { IHubSearchResult } from "./types/IHubSearchResult"; import { ISearchAssociatedContentOptions } from "./types/ISearchAssociatedContentOptions"; /** * Searches for content that is associated with a given entity. * Current associations supported are "related" and "connected". * * If unspecified, the number of results returned is 4. * * NOTE: only item based entities are supported for now. * * @returns Search results for the associated content */ export declare function searchAssociatedContent(opts: ISearchAssociatedContentOptions): Promise>;