import { ISearchIndexabilityManager } from '../common/ISearchIndexabilityManager'; import { ISeoIndexabilityPolicy } from '../common/ISeoIndexabilityPolicy'; import { IOrganisationSearchApplicationState } from './IOrganisationSearchApplicationState'; import { ISeoFilterState, ISeoInfoBase } from '../common'; import { PortalType } from '@studyportals/domain-client'; import { ISeoSortingState } from '../organisations/ISeoSortingState'; export declare class SearchIndexabilityManager implements ISearchIndexabilityManager { policies: ISeoIndexabilityPolicy[]; constructor(portalType: PortalType, seoInfoBase: ISeoInfoBase, filterState: ISeoFilterState, sortingState: ISeoSortingState, applicationState: IOrganisationSearchApplicationState); shouldIndex(): Promise; getPolicies(): ISeoIndexabilityPolicy[]; }