import { web3 } from '@project-serum/anchor';
declare type RevealLotTicketByAdmin = (params: {
    programId: web3.PublicKey;
    connection: web3.Connection;
    admin: web3.PublicKey;
    lotTicket: web3.PublicKey;
    isWinning: boolean;
    sendTxn: (transaction: web3.Transaction) => Promise<void>;
}) => Promise<void>;
export declare const revealLotTicketByAdmin: RevealLotTicketByAdmin;
export {};
