import { type Cache } from '../cache/index.js'; /** * uri = pmtiles://path/to/file.pmtiles/{z}/{x}/{y} * uri = pmtiles://http://url/to/file.pmtiles/{z}/{x}/{y} * uri = pmtiles://s3://bucket/key/to/file.pmtiles/{z}/{x}/{y} */ declare function getPmtilesSource(uri: string, cache?: Cache): Promise; export { getPmtilesSource };