import type { HighlightScope } from '@mui/x-charts/context'; import type { HighlightItemIdentifier } from '@mui/x-charts/models'; /** * The isHighlighted logic for main charts (those that are identified by an id and a name) */ export declare function createIsHighlighted(highlightScope: HighlightScope<'mapShape'> | null | undefined, highlightedItem: HighlightItemIdentifier<'mapShape'> | null): (item: HighlightItemIdentifier<"mapShape"> | null) => boolean; /** * The isFade logic for main charts (those that are identified by an id and a name) */ export declare function createIsFaded(highlightScope: HighlightScope<'mapShape'> | null | undefined, highlightedItem: HighlightItemIdentifier<'mapShape'> | null): (item: HighlightItemIdentifier<"mapShape"> | null) => boolean;