/**
 * Enum representing the side of the swap for querying available input/output tokens
 *
 * @category Core
 */
export declare enum SwapSide {
    /**
     * Represents input / source side of the swap
     */
    INPUT = 1,
    /**
     * Represents output / destination side of the swap
     */
    OUTPUT = 0
}
