import type LayerWms from '../../../models/layers/layerwms.js';
import type LayerWmts from '../../../models/layers/layerwmts.js';
/**
 * Determines if a layer is visible based on its opacity and print resolution.
 * @returns true if the layer is visible, otherwise false.
 */
export declare const isLayerVisible: (layer: LayerWms | LayerWmts, printResolution?: number) => boolean;
