export = Profiler;
declare class Profiler {
    constructor(session: any, config: any, s3Client: any);
    s3Client: any;
    session: any;
    config: any;
    enable(): Promise<void>;
    disable(): Promise<void>;
    start(): Promise<void>;
    stop(): Promise<any>;
    startPreciseCoverage(args: any): Promise<any>;
    stopPreciseCoverage(): Promise<any>;
    takePreciseCoverage(): Promise<any>;
}
