import { Address, AccountMeta, AccountSignerMeta, Instruction, Option, TransactionSigner } from "@solana/kit"; import BN from "bn.js"; export declare const DISCRIMINATOR: Buffer; export interface UpdateReserveAllocationArgs { weight: BN; cap: BN; } export interface UpdateReserveAllocationAccounts { 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 updateReserveAllocation(args: UpdateReserveAllocationArgs, accounts: UpdateReserveAllocationAccounts, remainingAccounts?: Array, programAddress?: Address): Instruction | import("@solana/kit").AccountLookupMeta)[]>; //# sourceMappingURL=updateReserveAllocation.d.ts.map