import ServerOgc from '../serverogc.js';
import LayerWms from './layerwms.js';
export default class LayerWmsExternal extends LayerWms {
    private static nextAvailableLayerId;
    private selected;
    get isSelected(): boolean;
    set isSelected(value: boolean);
    constructor(title: string, name: string, ogcServer: ServerOgc);
    clone(): LayerWmsExternal;
}
