/// import { ImageOptions } from './Image.types'; export declare function createCacheKey(fileSource: string, properties: string[]): string; export declare function createCacheKeyWithDirectoryAsync(projectRoot: string, type: string, icon: ImageOptions): Promise; export declare function ensureCacheDirectory(projectRoot: string, type: string, cacheKey: string): Promise; export declare function getImageFromCacheAsync(fileName: string, cacheKey: string): Promise; export declare function cacheImageAsync(fileName: string, buffer: Buffer, cacheKey: string): Promise; export declare function clearUnusedCachesAsync(projectRoot: string, type: string): Promise;