import { CustomError } from '../../../../../errors';
import { TestConfig } from '../../types';
export declare function downloadRulesBundle(testConfig: TestConfig): Promise<string>;
export declare const rulesBundleUrl = "https://static.snyk.io/cli/wasm/bundle-experimental.tar.gz";
export declare class FailedToDownloadRulesBundleError extends CustomError {
    constructor();
}
export declare class FailedToCacheRulesBundleError extends CustomError {
    constructor(savePath: string);
}
