import { Address, IInstruction, TransactionSigner } from "@solana/kit";
import BN from "bn.js";
export interface BurnArgs {
    sharesToBurn: BN;
    minWsolToReceive: BN;
}
export interface BurnAccounts {
    user: TransactionSigner;
    userWsolToken: Address;
    userUnstakingSolToken: Address;
    wsolVault: Address;
    wsolMint: Address;
    poolState: Address;
    unstakeTicket: Address;
    unstakingSolMint: Address;
    basePoolAuthority: Address;
    tokenProgram: Address;
}
export declare const layout: import("buffer-layout").Layout<unknown>;
export declare function burn(args: BurnArgs, accounts: BurnAccounts, programAddress?: Address): IInstruction;
//# sourceMappingURL=burn.d.ts.map