export default PreloadFontsAudit; declare class PreloadFontsAudit extends Audit { /** * Finds which font URLs were attempted to be preloaded, * ignoring those that failed to be reused and were requested again. * Note: document.fonts.load() is a valid way to preload fonts, * but we are not currently checking for that. * @param {Array} networkRecords * @return {Set} */ static getURLsAttemptedToPreload(networkRecords: Array): Set; /** * @param {LH.Artifacts} artifacts * @param {LH.Audit.Context} context * @return {Promise} */ static audit(artifacts: LH.Artifacts, context: LH.Audit.Context): Promise; } export namespace UIStrings { let title: string; let failureTitle: string; let description: string; } import { Audit } from './audit.js'; //# sourceMappingURL=preload-fonts.d.ts.map