import { FixedSizeCodec, FixedSizeDecoder, FixedSizeEncoder } from "@solana/kit"; //#region src/generated/types/splitAmountInfo.d.ts type SplitAmountInfo = { permanentLockedLiquidity: bigint; unlockedLiquidity: bigint; feeA: bigint; feeB: bigint; reward0: bigint; reward1: bigint; }; type SplitAmountInfoArgs = { permanentLockedLiquidity: number | bigint; unlockedLiquidity: number | bigint; feeA: number | bigint; feeB: number | bigint; reward0: number | bigint; reward1: number | bigint; }; declare function getSplitAmountInfoEncoder(): FixedSizeEncoder; declare function getSplitAmountInfoDecoder(): FixedSizeDecoder; declare function getSplitAmountInfoCodec(): FixedSizeCodec; //#endregion export { SplitAmountInfo, SplitAmountInfoArgs, getSplitAmountInfoCodec, getSplitAmountInfoDecoder, getSplitAmountInfoEncoder }; //# sourceMappingURL=splitAmountInfo.d.ts.map