import type { TFunction } from 'i18next'; import type { Dimension, LayerProps } from '@opengeoweb/webmap'; import type { ListItem } from './LayerInfoList'; export declare const getLayerStyles: (layer: LayerProps) => string; export declare const getDimensionValue: (name: string, dimensions: Dimension[]) => string; export declare const getLayerBbox: (t: TFunction, layer: LayerProps) => string; export declare const getDimensionIcon: (name: string, dimensions: Dimension[]) => React.ReactElement; export declare const getDimensionLabel: (name: string) => string; export declare const getDimensionsList: (dimensions: Dimension[]) => ListItem[];