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