import '../../runtime'; import React from 'react'; import * as types from '@ray-js/types'; export type ApplicationProps = { globalConfig: types.GlobalConfig & types.WebGlobalConfig; routes: types.Routes; tabBar: types.TabBar; pages: types.Pages; app: any; }; export declare class Application extends React.Component { constructor(props: Readonly); componentDidMount(): void; getGlobalConfig: (path: string | string[], defaultValue?: any) => any; render(): React.JSX.Element | null; }