export type CreatePayment = ({ productId, orderId, }: { productId: string; orderId: string; }) => Promise; export declare const createPayment: CreatePayment;