import { NativeModule } from 'expo-modules-core'; import { ImageCacheConfig, type ImageNativeModule, ImageRef, ImageSource } from './Image.types'; declare class ImageModule extends NativeModule implements ImageNativeModule { Image: typeof ImageRef; prefetch(urls: string | string[], _: unknown, __: unknown): Promise; clearMemoryCache(): Promise; clearDiskCache(): Promise; configureCache(_: ImageCacheConfig): void; loadAsync(source: ImageSource): Promise; getCachePathAsync(_: string): Promise; generateBlurhashAsync(_: string | ImageRef, __: [number, number] | { width: number; height: number; }): Promise; generateThumbhashAsync(_: string | ImageRef): Promise; } declare const _default: typeof ImageModule; export default _default; //# sourceMappingURL=ImageModule.web.d.ts.map