import { CollectorFootprintsProcess } from './collector-footprints-process'; /** * Footprints process for remote coverage collection, since the instrumented code is in different process (e.g browser) * there is need to flush the current footprints the coverage data received by incoming event */ export declare class CollectorRemoteFootprintsProcess extends CollectorFootprintsProcess { flushCurrentFootprints(isFinalFootprints?: boolean): Promise; }