import { Address, IAccountMeta, IInstruction, TransactionSigner } from "@solana/kit";
export interface ClaimFeeAccounts {
    lbPair: Address;
    position: Address;
    binArrayLower: Address;
    binArrayUpper: Address;
    sender: TransactionSigner;
    reserveX: Address;
    reserveY: Address;
    userTokenX: Address;
    userTokenY: Address;
    tokenXMint: Address;
    tokenYMint: Address;
    tokenProgram: Address;
    eventAuthority: Address;
    program: Address;
}
export declare function claimFee(accounts: ClaimFeeAccounts, programAddress?: Address): IInstruction<string, readonly (IAccountMeta<string> | import("@solana/kit").IAccountLookupMeta<string, string>)[]>;
//# sourceMappingURL=claimFee.d.ts.map