import { ISearchDependencies } from '../../common/ISearchDependencies'; import { FilterKeyValuesMap } from '../../common/FilterKeyValuesMap'; import { BaseProgrammeRule } from '../BaseProgrammeRule'; import { PortalType } from '@studyportals/domain-client'; export declare class IndexableEducationalFormRule extends BaseProgrammeRule { private readonly portalType; constructor(portalType?: PortalType); forSearch(dependencies: ISearchDependencies): Promise; forSitemapGenerator(filterKeyValues: FilterKeyValuesMap): Promise; getName(): string; getDescription(): string; private isIndexable; }