import { RuleHandle } from './RuleHandle';
import { RuleSetCondition, RuleSetLoader } from 'webpack';
interface Json5Options {
    'json5-loader': {
        esModule: boolean;
    };
}
export declare class Json5 extends RuleHandle<Json5Options> {
    protected test(): RuleSetCondition;
    protected loaders(): RuleSetLoader[];
}
export {};
