import { AppSharedState } from '../../appState/state.models'; import { FullPantherEntityWithNeighboursAsProp } from '../../models/models.metadata'; /** * Retrieves a style for rendering layer. * * @param {AppSharedState} state - The application state containing places and rendering layers. * @param {string | undefined} layerKey - The key of the layer for which places are to be retrieved. * @returns {Style | undefined} - Style model */ export declare const getStyleByRenderingLayerKey: (state: AppSharedState, layerKey: string | undefined) => FullPantherEntityWithNeighboursAsProp | undefined;