import { ConformanceLevel } from '../tools/ogcapi/ogcapiconformance.js'; export default class ServerOgcApi { url: string; conformsTo?: Record; constructor(url: string); } export type HttpMethod = 'GET' | 'POST' | 'PUT' | 'DELETE' | 'OPTIONS'; export declare const OgcApiDefaultEncoding = "application/json"; export type OgcApiLinksResponse = { href: string; rel: string; type?: string; title?: string; hreflang?: string; length?: number; };