import { web3 } from '@project-serum/anchor';
declare type PutLoanToLiquidationRaffles = (params: {
    programId: web3.PublicKey;
    connection: web3.Connection;
    admin: web3.PublicKey;
    loan: web3.PublicKey;
    nftMint: web3.PublicKey;
    gracePeriod: number;
}) => Promise<{
    ixs: web3.TransactionInstruction[];
    liquidationLot: web3.Signer;
}>;
export declare const putLoanToLiquidationRaffles: PutLoanToLiquidationRaffles;
export {};
