import { type OpenmrsResource } from '@openmrs/esm-framework'; import { type DataSource } from '../types'; export declare class BaseOpenMRSDataSource implements DataSource { url: string; constructor(url: string); fetchData(searchTerm: string): Promise; fetchSingleItem(uuid: string): Promise; toUuidAndDisplay(data: OpenmrsResource): OpenmrsResource; } //# sourceMappingURL=data-source.d.ts.map