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