import { IIamportPayment } from "iamport-server-api/lib/structures/IIamportPayment"; import { IIamportPaymentCancel } from "iamport-server-api/lib/structures/IIamportPaymentCancel"; import { IPaymentHistory } from "payment-api/lib/structures/payments/IPaymentHistory"; export declare namespace IamportPaymentService { function at(storeId: string, imp_uid: string): Promise; function approve(storeId: string, imp_uid: string, merchant_uid: string, amount: number): Promise; function parse(data: IIamportPayment): IPaymentHistory.IProps; function cancel(storeId: string, input: IIamportPaymentCancel.IStore): Promise; }