export = Heap;
declare class Heap {
    constructor(session: any, config: any, s3Client: any);
    s3Client: any;
    session: any;
    config: any;
    enable(): Promise<void>;
    disable(): Promise<void>;
    startSampling(): Promise<void>;
    stopSampling(): Promise<any>;
    takeSnapshot(): Promise<any>;
}
