/** * 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 Address, type FixedSizeCodec, type FixedSizeDecoder, type FixedSizeEncoder, type ReadonlyUint8Array } from "@solana/kit"; export type VaultLp = { /** The LP mint (e.g., representing shares in this vault). */ mint: Address; /** The bump for the vault LP mint. */ mintBump: number; /** The bump for the vault LP mint authority. */ mintAuthBump: number; /** Reserved bytes for future use. */ reserved: ReadonlyUint8Array; }; export type VaultLpArgs = VaultLp; export declare function getVaultLpEncoder(): FixedSizeEncoder; export declare function getVaultLpDecoder(): FixedSizeDecoder; export declare function getVaultLpCodec(): FixedSizeCodec; //# sourceMappingURL=vaultLp.d.ts.map