import { RazorpayOptions } from "./RazorpayOptions";
/**
 * Type for payment-specific options that change per transaction.
 */
export type RazorpayPaymentOptions = Pick<RazorpayOptions, "order_id" | "amount" | "currency" | "name" | "subscription_id" | "handler" | "callback_url">;
