export default class HttpMap {
    url: string;
    constructor(args: {
        url: string;
    });
    readMeta(): Promise<{
        hashHexCharacters: number;
        compress: any;
        tracks: any;
    }>;
    getHashHexCharacters(): Promise<number>;
    getCompress(): Promise<any>;
    getTrackNames(): Promise<any>;
    get(key: string): Promise<any>;
    getBucket(key: string): Promise<any>;
    loadFile(id: string): Promise<any>;
    hexToDirPath(hex: string): Promise<string>;
    hash(data: string): string;
}
