import { TransactionInstruction, PublicKey } from "@solana/web3.js";
import BN from "bn.js";
export interface DepositArgs {
    maxAmount: BN;
}
export interface DepositAccounts {
    user: PublicKey;
    vaultState: PublicKey;
    tokenVault: PublicKey;
    tokenMint: PublicKey;
    baseVaultAuthority: PublicKey;
    sharesMint: PublicKey;
    tokenAta: PublicKey;
    userSharesAta: PublicKey;
    klendProgram: PublicKey;
    tokenProgram: PublicKey;
    sharesTokenProgram: PublicKey;
    instructionSysvarAccount: PublicKey;
}
export declare const layout: any;
export declare function deposit(args: DepositArgs, accounts: DepositAccounts, programId?: PublicKey): TransactionInstruction;
//# sourceMappingURL=deposit.d.ts.map