import { Cache } from '../cache/index.js'; /** * retrieve sources from the uri * @param uri * @param cache {Cache} - Cache Strategy. Affect only for http(s) sources. * @returns */ declare function getSource(uri: string, cache?: Cache): Promise; export { getSource };