import type { RawInlineOverride } from "./types.js";
/**
 * Validates a list of raw inline overrides, checking for:
 * - Valid keys
 * - No duplicate keys for the same function
 * - Values of the expected type (numbers must be non-negative integers,
 *   booleans must be "true" or "false", strings must be a non-empty
 *   double-quoted literal)
 *
 * Throws a HardhatError if any validation fails.
 */
export declare function validateInlineOverrides(overrides: RawInlineOverride[]): void;
//# sourceMappingURL=validation.d.ts.map