import Api from './Api'; declare class RdqamApi extends Api { get prefix(): string; load(): any; loadHistory(startDate: string, endDate: string): any; loadByService({ serviceId, startDate, endDate, type, }: { serviceId: string; startDate: string; endDate: string; type: 'issue' | 'coverage' | 'duplicate'; }): any; } declare const rdqamApi: RdqamApi; export { rdqamApi };