import { TransactionInstruction, PublicKey } from "@solana/web3.js";
import BN from "bn.js";
export interface UpdateReserveConfigArgs {
    mode: BN;
    value: Uint8Array;
    skipValidation: boolean;
}
export interface UpdateReserveConfigAccounts {
    lendingMarketOwner: PublicKey;
    lendingMarket: PublicKey;
    reserve: PublicKey;
}
export declare const layout: any;
export declare function updateReserveConfig(args: UpdateReserveConfigArgs, accounts: UpdateReserveConfigAccounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=updateReserveConfig.d.ts.map