/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { ChunkInfo } from './chunk-info';
/**
 * @hidden
 */
export declare class ChunkMap {
    private _files;
    constructor();
    add(uid: string, totalChunks: number): ChunkInfo;
    remove(uid: string): void;
    has(uid: string): boolean;
    get(uid: string): ChunkInfo;
}
