import { FixedSizeCodec, FixedSizeDecoder, FixedSizeEncoder } from "@solana/kit"; //#region src/generated/types/swapResult2.d.ts type SwapResult2 = { includedFeeInputAmount: bigint; excludedFeeInputAmount: bigint; amountLeft: bigint; outputAmount: bigint; nextSqrtPrice: bigint; tradingFee: bigint; protocolFee: bigint; partnerFee: bigint; referralFee: bigint; }; type SwapResult2Args = { includedFeeInputAmount: number | bigint; excludedFeeInputAmount: number | bigint; amountLeft: number | bigint; outputAmount: number | bigint; nextSqrtPrice: number | bigint; tradingFee: number | bigint; protocolFee: number | bigint; partnerFee: number | bigint; referralFee: number | bigint; }; declare function getSwapResult2Encoder(): FixedSizeEncoder; declare function getSwapResult2Decoder(): FixedSizeDecoder; declare function getSwapResult2Codec(): FixedSizeCodec; //#endregion export { SwapResult2, SwapResult2Args, getSwapResult2Codec, getSwapResult2Decoder, getSwapResult2Encoder }; //# sourceMappingURL=swapResult2.d.ts.map