/**
 * Title extraction strategies
 * Multiple strategies for extracting document titles from HTML
 */
import type { Root } from 'hast';
import type { TitleExtractor } from '../types';
/**
 * Extract title using a strategy chain approach
 * @internal
 */
export declare function extractTitle(tree: Root, extractors?: readonly TitleExtractor[]): string;
//# sourceMappingURL=title-extractor.d.ts.map