import { IacOrgSettings, IaCTestFlags, RulesOrigin } from './types';
import { CustomError } from '../../../../../lib/errors';
export declare function initRules(iacOrgSettings: IacOrgSettings, options: IaCTestFlags): Promise<RulesOrigin>;
/**
 * Pull and store the IaC custom-rules bundle from the remote OCI Registry.
 */
export declare function pullIaCCustomRules(iacOrgSettings: IacOrgSettings): Promise<string>;
export declare class FailedToPullCustomBundleError extends CustomError {
    constructor(message?: string);
}
export declare class FailedToExecuteCustomRulesError extends CustomError {
    constructor(message?: string);
}
