import { IFetchOptions, IManifest, IManifestLoaderArgs, ITestCase, ITestCaseHandler, ManifestLoader } from "rdf-test-suite"; import { ILdfTestSuiteConfig } from './LdfTestSuiteRunner'; export declare class LdfManifestLoader extends ManifestLoader { static readonly DEFAULT_TEST_CASE_HANDLERS: { [uri: string]: ITestCaseHandler>; }; static readonly LOADER_CONTEXT: any; private readonly ldfTestCaseHandlers; constructor(args?: IManifestLoaderArgs); /** * Load the manifest from the given URL. * @param {string} url The URL of a manifest. * @param {IFetchOptions} options The fetch options. * @return {Promise} A promise that resolves to a manifest object. */ from(url: string, options: IFetchOptions & ILdfTestSuiteConfig): Promise; }