export declare enum FeeAmount { /** 0.01% */ LOWEST = 100, /** 0.1% */ LOW = 500, /** 0.3% */ MEDIUM = 3000, /** 1% */ HIGH = 10000 } /** * The default factory tick spacings by fee amount. */ export declare const TICK_SPACINGS: { [_amount in FeeAmount]: number; };