import React from 'react'; import './index.less'; interface LoaderAppProps { appConfig: { entry?: string; script?: string; style?: string; name: string; appTitle: string; }; appProps: { [key: string]: any; }; style: React.CSSProperties; } declare function LoaderApp(props: LoaderAppProps): JSX.Element; declare const _default: React.MemoExoticComponent; export default _default;