import React from 'react'; import { AppItemType } from '../Config/interface'; import './index.less'; interface ILoaderAppProps { /** * @description 微应用配置信息 * @default - */ appConfig: AppItemType; /** * @description 需要传递微应用的参数 * @default {} */ appProps: { [key: string]: any; }; /** * @description 微应用加载容器样式 * @default - */ style?: React.CSSProperties; } declare function LoaderApp({ appConfig, appProps, style }: ILoaderAppProps): JSX.Element; declare namespace LoaderApp { var defaultProps: { appConfig: {}; appProps: {}; style: {}; }; } export default LoaderApp;