import PaymentMethod from '../utils/payment'; import { PaymentMethodOptions } from '../types'; export declare const usePayment: (options: PaymentMethodOptions) => { run: (runParams?: { params?: { [key: string]: any; } | undefined; config?: { needResponse?: boolean | undefined; } | undefined; } | undefined) => void; query: () => void; action: (data: Record, config?: Record) => void; reset: () => void; _instance: PaymentMethod | null; };