export declare const FACTORY_ADDRESS: string; export declare const ADDRESS_ZERO = "0x0000000000000000000000000000000000000000"; export declare const POOL_INIT_CODE_HASH: string; /** * The default factory enabled fee amounts, denominated in hundredths of bips. */ export declare enum FeeAmount { LOWER = 100, LOW = 500, MEDIUM = 3000, HIGH = 10000 } /** * The default factory tick spacings by fee amount. */ export declare const TICK_SPACINGS: { [amount in FeeAmount]: number; };