import type { AccountingReportRepo } from '../../../repo/accountingReport';
import type { ActionRepo } from '../../../repo/action';
import { INotification } from './factory';
/**
 * 決済ステータス変更イベント
 */
export declare function onPaymentStatusChanged(params: INotification): (repos: {
    action: ActionRepo;
    accountingReport: AccountingReportRepo;
}) => Promise<void>;
