/** * This code was AUTOGENERATED using the Codama library. * Please DO NOT EDIT THIS FILE, instead use visitors * to add features, then rerun Codama to update it. * * @see https://github.com/codama-idl/codama */ import { type FixedSizeCodec, type FixedSizeDecoder, type FixedSizeEncoder, type ReadonlyUint8Array } from "@solana/kit"; export type HighWaterMark = { /** The highest recorded total asset value per share */ highestAssetPerLpDecimalBits: bigint; /** The timestamp when the high water mark was last updated */ lastUpdatedTs: bigint; /** Reserved for future use */ reserved: ReadonlyUint8Array; }; export type HighWaterMarkArgs = { /** The highest recorded total asset value per share */ highestAssetPerLpDecimalBits: number | bigint; /** The timestamp when the high water mark was last updated */ lastUpdatedTs: number | bigint; /** Reserved for future use */ reserved: ReadonlyUint8Array; }; export declare function getHighWaterMarkEncoder(): FixedSizeEncoder; export declare function getHighWaterMarkDecoder(): FixedSizeDecoder; export declare function getHighWaterMarkCodec(): FixedSizeCodec; //# sourceMappingURL=highWaterMark.d.ts.map