import { IRule } from './IRule'; export interface ISeoIndexabilityPolicy { shouldIndex(): Promise; getAllRules(): IRule[]; getName(): string; getDescription(): string; }