import type { Store } from '@mui/x-internals/store'; import { type ChartAnyPluginSignature, type ChartState } from "../models/index.js"; export declare function useLazySelectorEffect(store: Store>, selector: (state: ChartState) => Value, effect: (previous: Value, next: Value) => void, /** * If true, the selector will be ignored. */ skip?: boolean): void;