import { IPaymentHistory } from "payment-api/lib/structures/payments/IPaymentHistory"; import { ITossPayment } from "toss-payments-server-api/lib/structures/ITossPayment"; import { ITossPaymentCancel } from "toss-payments-server-api/lib/structures/ITossPaymentCancel"; export declare namespace TossPaymentService { function at(storeId: string, paymentKey: string): Promise; function approve(storeId: string, paymentKey: string, input: ITossPayment.IApproval): Promise; function parse(data: ITossPayment): IPaymentHistory.IProps; function store(storeId: string, input: ITossPayment.IStore): Promise; function cancel(storeId: string, input: ITossPaymentCancel.IStore): Promise; }