import React from 'react'; export type LazyComponentResult = React.LazyExoticComponent> & { WrappedComponent?: React.ComponentType; }; export declare function lazyComponent(url: string, name: string, success?: () => void, fail?: (err: Error) => void): LazyComponentResult;