export declare const normalizeText: (value: string) => string; export declare const stripHtml: (html: string) => string; export declare const extractUrls: (html: string, text: string) => string[]; export declare const extractLinks: (html: string) => { href: string; text: string; }[]; export declare const countImages: (html: string) => number; export declare const hasBase64Image: (html: string) => boolean; export declare const hasHiddenOrTinyText: (html: string) => boolean; export declare const extractHiddenOrTinyText: (html: string) => string[]; //# sourceMappingURL=html.d.ts.map