import { UrlPathTransformer } from './urlPathTransformer';
import { ChromeDebugSession } from '../chrome/chromeDebugSession';
/**
 * Converts a local path from Code to a path on the target. Uses the UrlPathTransforme logic and fallbacks to asking the client if neccesary
 */
export declare class FallbackToClientPathTransformer extends UrlPathTransformer {
    private _session;
    private static ASK_CLIENT_TO_MAP_URL_TO_FILE_PATH_TIMEOUT;
    constructor(_session: ChromeDebugSession);
    protected targetUrlToClientPath(scriptUrl: string): Promise<string>;
    private requestClientToMapURLToFilePath(url);
}
