import { default as React } from 'react'; export interface PreloadLink { name: string; url: string; as: 'font' | 'image' | 'document'; type: 'font/woff2' | 'text/html' | 'image/jpeg' | 'image/webp'; formats?: string[]; sizes?: string; defaultFormat?: string; } export interface PreloadProps { links: PreloadLink[]; } export declare const Preload: React.FC;