import React from 'react'; import { DynamicViewProps, DynamicViewState } from './iDynamicView'; declare class DynamicView extends React.Component { static defaultProps: { appCode: null; pageCode: null; billCode: null; jsPluginUrl: null; uiMeta: null; uiParser: null; uiEvent: null; uiParams: null; mode: null; serverUrl: null; }; constructor(props: DynamicViewProps); componentWillReceiveProps(nextProps: DynamicViewProps): void; refreshPage: (appCode?: string | null | undefined, pageCode?: string | null | undefined, location?: any, routeParams?: any) => void; _loadPageData: (appCode?: string, pageCode?: string) => void; componentDidMount(): void; render(): JSX.Element | undefined; } export default DynamicView;