/**
 * Enum representing whether the swap amount is exact input or exact output
 *
 * @category Core
 */
export declare enum SwapAmountType {
    /**
     * Swap amount specified in the input token
     */
    EXACT_IN = 1,
    /**
     * Swap amount specified in the output token
     */
    EXACT_OUT = 0
}
