import { AppSharedState } from '../state.models'; import { RenderingLayer } from '../../models/models.layers'; /** * Extract layers for a specific map from the shared state by combining map state, rendering layers and style. * @param state - The shared application state. * @param key - The key of the map to extract layers for. * @returns {RenderingLayer[] | undefined} The combined layers or undefined if no layers are found. */ export declare const getLayersByMapKey: (state: AppSharedState, key: string) => RenderingLayer[] | undefined;