import orders from "./orders"; interface options { paymentId?: string; from?: string; to?: string; skip?: number; count?: number; } declare class payments extends orders { payments: { get: (options?: options | undefined) => Promise; details: (paymentId: string) => Promise; update: (paymentId: string, notes: object) => Promise; capture: (paymentId: string, amount: number, currency: 'INR') => Promise; refundPayment: (paymentId: string, options?: { amount?: number | undefined; receipt?: string | undefined; speed: 'normal' | 'optimum'; } | undefined) => Promise; refunds: (paymentId: string, options?: options | undefined) => Promise; getRefundDetails: (paymentId: string, refundId: string) => Promise; }; } export default payments;