import { captureOrderOnlinePayment } from './capture-order-online-payment'; import { count } from './count'; import { create } from './create'; import { createCertificatePayment } from './create-certificate-payment'; import { createCertificateRefund } from './create-certificate-refund'; import { exportTransactions } from './export'; import { fastStat } from './fast-stat'; import { getOne } from './get-one'; import { query } from './query'; import { remove } from './remove'; import { removeCertificatePayment } from './remove-certificate-payment'; import { removeCertificateRefund } from './remove-certificate-refund'; type ApiDeclaration = { fastStat: typeof fastStat; exportTransactions: typeof exportTransactions; count: typeof count; create: typeof create; remove: typeof remove; query: typeof query; captureOrderOnlinePayment: typeof captureOrderOnlinePayment; createCertificatePayment: typeof createCertificatePayment; createCertificateRefund: typeof createCertificateRefund; removeCertificatePayment: typeof removeCertificatePayment; removeCertificateRefund: typeof removeCertificateRefund; getOne: typeof getOne; }; export declare const transactionsApiDeclaration: ApiDeclaration; export {};