import { web3 } from '@project-serum/anchor';
declare type AddLot = (params: {
    programId: web3.PublicKey;
    connection: web3.Connection;
    args: {
        nameForRuleSet: string;
        payerRuleSet: web3.PublicKey;
    };
    accounts: {
        userPubkey: web3.PublicKey;
        auction: web3.PublicKey;
        nftMint: web3.PublicKey;
    };
}) => Promise<{
    lot: web3.PublicKey;
    instructions: web3.TransactionInstruction[];
    signers: web3.Signer[];
}>;
export declare const addLot: AddLot;
export {};
