import { GMFServerOgc, GMFServerOgcType } from './gmf.js';
export default class ServerOgc {
    name: string;
    url: string;
    wfsSupport: boolean;
    urlWfs?: string;
    oapifSupport: boolean;
    urlOapif?: string;
    type: GMFServerOgcType;
    imageType: string;
    aliases: Record<string, string>;
    constructor(name: string, elem: GMFServerOgc);
    private getAliasKey;
    private initializeAliases;
    getAlias(table: string, column: string): string;
    get uniqueWmsQueryId(): string;
}
