import { RR0Context } from "../../../RR0Context.js";
import { HttpSource } from "../HttpSource.js";
import { AcufoCase } from "./AcufoCase.js";
import { AbstractDatasource } from "../AbstractDatasource.js";
export declare class AcufoDatasource extends AbstractDatasource<AcufoCase> {
    readonly baseUrl: string;
    readonly searchPath: string;
    protected http: HttpSource;
    constructor(baseUrl?: string, searchPath?: string);
    protected readCases(context: RR0Context): Promise<AcufoCase[]>;
    protected getNativeCase(context: RR0Context, row: Element): AcufoCase;
}
