import { TransactionInstruction, PublicKey } from "@solana/web3.js";
import BN from "bn.js";
export interface GiveUpPendingFeesArgs {
    maxAmountToGiveUp: BN;
}
export interface GiveUpPendingFeesAccounts {
    vaultAdminAuthority: PublicKey;
    vaultState: PublicKey;
    klendProgram: PublicKey;
}
export declare const layout: any;
export declare function giveUpPendingFees(args: GiveUpPendingFeesArgs, accounts: GiveUpPendingFeesAccounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=giveUpPendingFees.d.ts.map