import { TransactionInstruction, PublicKey } from "@solana/web3.js";
import * as types from "../types";
export interface UpdateReserveConfigArgs {
    mode: types.UpdateConfigModeKind;
    value: Uint8Array;
    skipConfigIntegrityValidation: boolean;
}
export interface UpdateReserveConfigAccounts {
    signer: PublicKey;
    globalConfig: 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