import Layer from './layer.js';
type LayerVectorTilesOptions = {
    projection?: string;
    layerName?: string;
    isDefaultChecked?: boolean;
    disclaimer?: string;
    metadataUrl?: string;
    opacity?: number;
    protected?: boolean;
};
declare class LayerVectorTiles extends Layer {
    style: string;
    layerName?: string;
    projection?: string;
    constructor(id: number, name: string, order: number, style: string, options?: LayerVectorTilesOptions);
    clone(): LayerVectorTiles;
}
export default LayerVectorTiles;
