import { GeneralConfigData } from '../types'; import ContractCache from './helpers/ContractCache'; import HatchConfig from './HatchConfig'; import HatchOracleConfig from './HatchOracleConfig'; declare class GeneralConfig { readonly id: string; readonly hatchConfig: HatchConfig; readonly hatchOracleConfig: HatchOracleConfig; constructor(data: GeneralConfigData, contractCache: ContractCache); } export default GeneralConfig; //# sourceMappingURL=GeneralConfig.d.ts.map