export declare const usePreload: (src: string) => string; declare type FetchAndPreload = { free: () => void; waitUntilDone: () => Promise; }; export declare const prefetch: (src: string, options?: { method?: 'blob-url' | 'base64'; }) => FetchAndPreload; export {};