import { RemoveLiquidityParameters, RemoveLiquidityParametersArgs } from "./removeLiquidityParameters.js"; import "./index.js"; import { Address, FixedSizeCodec, FixedSizeDecoder, FixedSizeEncoder } from "@solana/kit"; //#region src/generated/types/evtRemoveLiquidity.d.ts type EvtRemoveLiquidity = { pool: Address; position: Address; owner: Address; params: RemoveLiquidityParameters; tokenAAmount: bigint; tokenBAmount: bigint; }; type EvtRemoveLiquidityArgs = { pool: Address; position: Address; owner: Address; params: RemoveLiquidityParametersArgs; tokenAAmount: number | bigint; tokenBAmount: number | bigint; }; declare function getEvtRemoveLiquidityEncoder(): FixedSizeEncoder; declare function getEvtRemoveLiquidityDecoder(): FixedSizeDecoder; declare function getEvtRemoveLiquidityCodec(): FixedSizeCodec; //#endregion export { EvtRemoveLiquidity, EvtRemoveLiquidityArgs, getEvtRemoveLiquidityCodec, getEvtRemoveLiquidityDecoder, getEvtRemoveLiquidityEncoder }; //# sourceMappingURL=evtRemoveLiquidity.d.ts.map