import { TransactionInstruction, PublicKey } from "@solana/web3.js";
import BN from "bn.js";
export interface WithdrawFromAvailableArgs {
    sharesAmount: BN;
}
export interface WithdrawFromAvailableAccounts {
    user: PublicKey;
    vaultState: PublicKey;
    tokenVault: PublicKey;
    baseVaultAuthority: PublicKey;
    userTokenAta: PublicKey;
    tokenMint: PublicKey;
    userSharesAta: PublicKey;
    sharesMint: PublicKey;
    tokenProgram: PublicKey;
    sharesTokenProgram: PublicKey;
    klendProgram: PublicKey;
    eventAuthority: PublicKey;
    program: PublicKey;
}
export declare const layout: any;
export declare function withdrawFromAvailable(args: WithdrawFromAvailableArgs, accounts: WithdrawFromAvailableAccounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=withdrawFromAvailable.d.ts.map