import { ViewBase } from '../../../view/view-base'; /** * 应用未支持视图 * * @export * @class AppDefaultNotSupportedView * @extends {ViewBase} */ export declare class AppDefaultNotSupportedView extends ViewBase { /** * 传入视图上下文 * * @type {string} * @memberof AppDefaultNotSupportedView */ staticProps: any; /** * 视图动态参数 * * @type {string} * @memberof AppDefaultNotSupportedView */ dynamicProps: any; /** * 监听动态参数变化 * * @param {*} newVal * @param {*} oldVal * @memberof AppDefaultNotSupportedView */ onDynamicPropsChange(newVal: any, oldVal: any): void; /** * 监听静态参数变化 * * @memberof AppDefaultNotSupportedView */ onStaticPropsChange(newVal: any, oldVal: any): void; /** * 视图渲染 * * @memberof AppDefaultNotSupportedView */ render(h: any): JSX.Element; } //# sourceMappingURL=app-default-notsupportedview.d.ts.map