//#region src/config.d.ts type ContractConfig = { exchange: string; negRiskAdapter: string; negRiskExchange: string; collateral: string; conditionalTokens: string; exchangeV2: string; negRiskExchangeV2: string; }; declare const COLLATERAL_TOKEN_DECIMALS = 6; declare const CONDITIONAL_TOKEN_DECIMALS = 6; declare const getContractConfig: (chainID: number) => ContractConfig; //#endregion export { COLLATERAL_TOKEN_DECIMALS, CONDITIONAL_TOKEN_DECIMALS, type ContractConfig, getContractConfig }; //# sourceMappingURL=config.d.ts.map