import React from 'react'; import type { ByPath, FixtureModules, LazyReactDecoratorWrapper, LazyReactFixtureWrapper } from 'react-cosmos-core'; type Props = { fixtureWrapper: LazyReactFixtureWrapper; decorators: ByPath; fixturePath: string; renderModules: (modules: FixtureModules) => React.ReactElement; }; export declare function LazyModuleLoader({ fixtureWrapper, decorators, fixturePath, renderModules }: Props): React.ReactElement> | null; export {};