import React, { ReactNode } from 'react'; interface LazyComponentProps { lazyLoad: () => Promise<{ default: any; }>; fallback?: ReactNode; } export declare const LazyComponent: React.MemoExoticComponent<(props: LazyComponentProps) => JSX.Element>; export {}; //# sourceMappingURL=LazyComponent.d.ts.map