export interface IOrderInfoNoti {
    orderId: string;
    receivedTxId?: string;
    pendingReason?: string;
    error?: string;
}
export declare class OrderInfoNoti implements IOrderInfoNoti {
    orderId: string;
    receivedTxId?: string;
    isNotifiedReceivingFundToTelegram?: boolean;
    pendingReason?: string;
    error?: string;
    isNotifiedErrorToTelegram?: boolean;
    static create(opts: any): OrderInfoNoti;
}
//# sourceMappingURL=OrderInfoNoti.d.ts.map