/** * An enum for the direction of a swap. * @category Whirlpool Utils */ export declare enum SwapDirection { AtoB = "aToB", BtoA = "bToA" } /** * An enum for the token type in a Whirlpool. * @category Whirlpool Utils */ export declare enum TokenType { TokenA = 1, TokenB = 2 }