import type { SvgIconProps } from '@mui/material'; import type { TFunction } from 'i18next'; import type React from 'react'; import type { WMJSDimension } from '@opengeoweb/webmap'; export interface DimensionConfig { name: string; label: string; defaultUnit: string; reversed: boolean; iconType: string; } export declare const dimensionConfig: (t: TFunction) => DimensionConfig[]; export declare const getDimensionIcon: (iconType: string) => React.FC; export interface Mark { value: number | string; label?: React.ReactNode; } export declare const marksByDimension: (t: TFunction, dim: WMJSDimension) => Mark[];