export const icon: "data:image/svg+xml,"; export const UIStrings: { /** Additional description of a Lighthouse audit that tells the user how they can remove unusused CSS rules by configuring a plugin named PurgeCSS. */ 'unused-css-rules': string; /** Additional description of a Lighthouse audit that tells the user to use the next/image component to automatically optimize image format. */ 'modern-image-formats': string; /** Additional description of a Lighthouse audit that tells the user to defer loading images which are not shown on screen using the next/image component. */ 'offscreen-images': string; /** Additional description of a Lighthouse audit that tells the user to use next/script to defer loading of non-critical third-party libraries. */ 'render-blocking-resources': string; /** Additional description of a Lighthouse audit that tells the user to use Webpack Bundle Analyzer to discover JavaScript code that is not used. */ 'unused-javascript': string; /** Additional description of a Lighthouse audit that tells the user to enable caching for assets (e.g. images) and server-side rendered (SSR) pages that don't change between deployments. */ 'uses-long-cache-ttl': string; /** Additional description of a Lighthouse audit that tells the user to use the next/image component to adjust image quality. */ 'uses-optimized-images': string; /** Additional description of a Lighthouse audit that tells the user to enable compression (gzip, brotli) on their servers. */ 'uses-text-compression': string; /** Additional description of a Lighthouse audit that tells the user to serve responsive images using the next/image component with appropriate `sizes` set. */ 'uses-responsive-images': string; /** Additional description of a Lighthouse audit that tells the user to analyze the performance of their applications using Next.js Analytics. */ 'user-timings': string; /** Additional description of a Lighthouse audit that tells the user to use the next/image component to automatically preload LCP images. */ 'prioritize-lcp-image': string; /** Additional description of a Lighthouse audit that tells the user to use the next/image component to make sure `width` and `height` of image elements are always specified. */ 'unsized-images': string; }; export declare let id: string; export declare let title: string;