import { Size } from "./api"; import { IQDB_RESULT_TYPE } from "./h"; export declare function parseSimilarity(txt: string): number | null; export declare function parseSizeAndType(txt: string): { size: Size; type: IQDB_RESULT_TYPE; } | string; export declare function getRandomName(): string; export declare function asyncIterableToArray(asyncIterable: AsyncIterable): Promise>;