import type * as GeoJSON from 'geojson'; export declare const Stac: { readonly Version: "1.0.0-beta.2"; readonly License: "CC BY 4.0"; readonly BaseMapsExtension: "https://basemaps.linz.govt.nz/json-schema/stac-basemaps-extension/1.0/schema.json"; }; export interface StacLink { rel: string; href: string; type?: string; [other: string]: unknown; } export interface StacAsset { href: string; type: string; roles: string[]; title?: string; description?: string; } /** * Provides information about a provider. * * @link https://github.com/radiantearth/stac-spec/blob/master/commons/common-metadata.md#provider */ export interface StacProvider { /** * The name of the organization or the individual. */ name: string; /** * Multi-line description to add further provider information such as processing details * for processors and producers, hosting details for hosts or basic contact information. */ description?: string; /** * Roles of the provider. Any of `licensor`, `producer`, `processor` or `host`. */ roles?: string[]; /** * Homepage on which the provider describes the dataset and publishes contact information. */ url?: string; } export interface StacObject { /** Unique processing Id */ id: string; stac_version: '1.0.0-beta.2'; links: StacLink[]; stac_extensions?: string[]; } export interface StacExtent { spatial: { bbox: [number, number, number, number][]; }; temporal: { interval: [string, string][]; }; } export interface StacCatalog extends StacObject { title: string; description: string; } export interface StacCollection> extends StacCatalog { license: string; extent: StacExtent; keywords?: string[]; providers?: StacProvider[]; summaries: S; } export interface StacItem

> extends StacObject, GeoJSON.Feature { id: string; collection?: string; bbox: GeoJSON.BBox; links: StacLink[]; assets: Record; }