import { GeneratedDocFile, RegistryEntry } from '../shared/types'; import { NormalizeAdapter, NormalizeAdapterInput } from './normalize-adapter.interface'; export declare class GoogleAdsNormalizeAdapterService implements NormalizeAdapter { supports(entry: RegistryEntry): boolean; buildDocs(input: NormalizeAdapterInput): GeneratedDocFile[]; evaluateQuality(input: NormalizeAdapterInput, docs: GeneratedDocFile[]): string[]; private buildSummary; private normalizeBody; private buildFrontmatter; private cleanHeading; }