import 'hardhat/types/config';
import { Checks } from './types';
declare module 'hardhat/types/config' {
    interface HardhatUserConfig {
        outputValidator?: {
            include?: string[];
            exclude?: string[];
            runOnCompile?: boolean;
            errorMode?: boolean;
            strict?: boolean;
            checks?: Checks;
        };
    }
    interface HardhatConfig {
        outputValidator: {
            include: string[];
            exclude: string[];
            runOnCompile: boolean;
            errorMode: boolean;
            strict: boolean;
            checks: Checks;
        };
    }
}
//# sourceMappingURL=type-extensions.d.ts.map