import { DefaultOptions } from '@apollo/client/core'; export declare enum SupportedChainId { ARBITRUM_GOERLI = 421613, ARBITRUM = 42161, ARBITRUM_NOVA = 42170 } export declare const Fees: { PROTOCOL_FEE_PERCENT: bigint; PREMIUM_FEE_PERCENT: bigint; NOTIONAL_FEE_PERCENT: bigint; ORDERBOOK_NOTIONAL_FEE_PERCENT: bigint; MAX_PREMIUM_FEE_PERCENT: bigint; EXERCISE_NOTIONAL_FEE_PERCENT: bigint; MAX_EXERCISE_FEE_PERCENT: bigint; }; export declare const WAD_DECIMALS = 18n; export declare const USD_DECIMALS = 18n; export declare const ETH_DECIMALS = 18n; export declare const MIN_TICK_DISTANCE: bigint; export declare const MIN_TICK_PRICE: bigint; export declare const MAX_TICK_PRICE: bigint; export declare const WAD_BI: bigint; export declare const ONE_BI = 1n; export declare const ZERO_BI = 0n; export declare const CHAINLINK_BTC = "0xbBbBBBBbbBBBbbbBbbBbbbbBBbBbbbbBbBbbBBbB"; export declare const CHAINLINK_ETH = "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE"; export declare const CHAINLINK_USD = "0x0000000000000000000000000000000000000348"; export interface AddressMap { [chainId: number]: { [contractName: string]: string; }; } export declare const Addresses: AddressMap; export declare const DefaultApolloClientOptions: DefaultOptions;