1import { ImageSource } from '../Image.types'; 2/** 3 * Converts a blurhash string (`blurhash:/<hash>/<width>/<height>` or <hash>/<width>/<height>) into an `ImageSource`. 4 * 5 * @return An ImageSource representing the provided blurhash. 6 * */ 7export declare function resolveBlurhashString(str: string): ImageSource; 8/** 9 * Converts a thumbhash string (`thumbhash:/<hash>` or `<hash>`) into an `ImageSource`. 10 * 11 * @return An ImageSource representing the provided thumbhash. 12 * */ 13export declare function resolveThumbhashString(str: string): ImageSource; 14//# sourceMappingURL=resolveHashString.d.ts.map