import '@nomiclabs/hardhat-ganache'; import '@nomiclabs/hardhat-waffle'; import 'hardhat-typechain'; import 'hardhat-gas-reporter'; declare const config: { defaultNetwork: string; solidity: { version: string; settings: { optimizer: { enabled: boolean; runs: number; }; }; }; paths: { sources: string; tests: string; }; typechain: { outDir: string; target: string; }; networks: { hardhat: { gas: number; chainId: number; }; ganache: { url: string; deterministic: boolean; mnemonic: string; networkId: number; timeout: number; }; ropsten: { url: string; accounts: string[]; }; localhost: { timeout: number; }; }; gasReporter: { enabled: boolean; currency: string; src: string; }; }; export default config;