import type { NmriumState } from '@zakodium/nmrium-core'; import { FileCollection } from 'file-collection'; import type { ReactNode } from 'react'; import type { NMRiumChangeCb } from './types.js'; interface NMRiumStateProviderProps { children: ReactNode; onChange: NMRiumChangeCb | undefined; state: Partial | undefined; aggregator: FileCollection | undefined; } export default function NMRiumStateProvider(props: NMRiumStateProviderProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=NMRiumStateProvider.d.ts.map