import { ConformanceLevel } from '../tools/ogcapi/ogcapiconformance';
export default class ServerOgcApi {
    url: string;
    conformsTo?: Record<ConformanceLevel, boolean>;
    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;
};
