import "hardhat/types/config";
declare module "hardhat/types/config" {
    interface DeployedRecordsUserConfig {
        deployedDir?: string;
        ignoreContracts?: string[];
    }
    interface DeployedRecordsConfig {
        deployedDir: string;
        ignoreContracts: string[];
    }
    interface HardhatUserConfig {
        deployedRecords?: DeployedRecordsUserConfig;
    }
    interface HardhatConfig {
        deployedRecords: DeployedRecordsConfig;
    }
}
