import type { MedipassRequestOpts } from '../types'; /** * Update patient payment information by SMS or Link * @param {String} businessId - Business ID * @param {String} patientId - Patient ID * @param {Object} body - Request body * @param {Object} opts - Additional options */ export declare const requestUpdatePatientPaymentMethod: (businessId: string, patientId: string, body: Record, opts?: MedipassRequestOpts) => Promise>; /** * Create a business patient * @param {String} businessId - Business ID * @param {Object} body - Query parameters * @param {Object} opts - Additional options */ export declare const createBusinessPatient: (businessId: string, body: Record, opts?: MedipassRequestOpts) => Promise>; /** * Get business patients * @param {String} businessId - Business ID * @param {Object} query - Query parameters * @param {Object} opts - Additional options */ export declare const getBusinessPatients: (businessId: string, query?: Record, opts?: MedipassRequestOpts) => Promise>; /** * Get a business patient * @param {String} businessId - Business ID * @param {String} patientId - Patient ID * @param {Object} opts - Additional options */ export declare const getBusinessPatient: (businessId: string, patientId: string, opts?: MedipassRequestOpts) => Promise>; /** * Get a business patient by ref id * @param {String} businessId - Business ID * @param {String} refId - Ref ID * @param {Object} opts - Additional options */ export declare const getBusinessPatientByRefId: (businessId: string, refId: string, opts?: MedipassRequestOpts) => Promise>; /** * Update a business patient * @param {String} businessId - Business ID * @param {String} patientId - Patient ID * @param {Object} body - Query parameters * @param {Object} opts - Additional options */ export declare const updateBusinessPatient: (businessId: string, patientId: string, body: Record, opts?: MedipassRequestOpts) => Promise>; /** * Delete a business patient * @param {String} businessId - Business ID * @param {String} patientId - Patient ID * @param {Object} opts - Additional options */ export declare const deleteBusinessPatient: (businessId: string, patientId: string, opts?: MedipassRequestOpts) => Promise>;