import { Address, FixedSizeCodec, FixedSizeDecoder, FixedSizeEncoder } from "@solana/kit"; //#region src/generated/types/evtPermanentLockPosition.d.ts type EvtPermanentLockPosition = { pool: Address; position: Address; lockLiquidityAmount: bigint; totalPermanentLockedLiquidity: bigint; }; type EvtPermanentLockPositionArgs = { pool: Address; position: Address; lockLiquidityAmount: number | bigint; totalPermanentLockedLiquidity: number | bigint; }; declare function getEvtPermanentLockPositionEncoder(): FixedSizeEncoder; declare function getEvtPermanentLockPositionDecoder(): FixedSizeDecoder; declare function getEvtPermanentLockPositionCodec(): FixedSizeCodec; //#endregion export { EvtPermanentLockPosition, EvtPermanentLockPositionArgs, getEvtPermanentLockPositionCodec, getEvtPermanentLockPositionDecoder, getEvtPermanentLockPositionEncoder }; //# sourceMappingURL=evtPermanentLockPosition.d.ts.map