import "@nestia/fetcher";
import { payment_histories } from "@prisma/client";
import { IPaymentHistory } from "payment-api/lib/structures/payments/IPaymentHistory";
export declare namespace PaymentWebhookProvider {
const process: (vendor: "iamport" | "toss.payments") => (config: {
uid: (input: Input) => string | null;
fetch: (history: payment_histories) => Promise;
props: (data: Data) => IPaymentHistory.IProps;
}) => (input: Input) => Promise;
}