import { Address, AccountMeta, AccountSignerMeta, Instruction, Option, TransactionSigner } from "@solana/kit"; import BN from "bn.js"; export declare const DISCRIMINATOR: Buffer; export interface UpdateReserveAllocationV2Args { weight: BN; cap: BN; ctokenAllocationCap: BN; } export interface UpdateReserveAllocationV2Accounts { signer: TransactionSigner; vaultState: Address; baseVaultAuthority: Address; reserveCollateralMint: Address; reserve: Address; ctokenVault: Address; reserveWhitelistEntry: Option
; reserveCollateralTokenProgram: Address; systemProgram: Address; rent: Address; } export declare const layout: import("buffer-layout").Layout; export declare function updateReserveAllocationV2(args: UpdateReserveAllocationV2Args, accounts: UpdateReserveAllocationV2Accounts, remainingAccounts?: Array, programAddress?: Address): Instruction | import("@solana/kit").AccountLookupMeta)[]>; //# sourceMappingURL=updateReserveAllocationV2.d.ts.map