import * as t from "io-ts"; import { ValidationError } from "io-ts/lib"; import { Reporter } from "io-ts/lib/Reporter"; export declare function failure(es: ValidationError[]): string[]; export declare function success(): string[]; export declare const DotPathReporter: Reporter; export declare const hexString: t.Type; export declare const address: t.Type; export declare const decimalString: t.Type; /** * Validates the config, throwing a HardhatError if invalid. * @param config */ export declare function validateConfig(config: any): void; export declare function getValidationErrors(config: any): string[]; //# sourceMappingURL=config-validation.d.ts.map