import { Service } from '../service'; /** * 取引番号サービス */ export declare class TransactionNumberService extends Service { /** * 発行 */ publish(params: {}): Promise<{ transactionNumber: string; }>; }