import { type PropsWithChildren } from 'react'; /** * Syncs domain-dependent state (currentDomain, zoomOutEnabled) into the store * after the data provider has computed axes and scale domains. * * This component exists because the store is placed above the data provider * in the provider tree (to allow legend filtering), but domain/zoom state * depends on processed data. */ export declare const XYChartStoreDomainSync: ({ children }: PropsWithChildren) => import("react").ReactNode;