import { Component, ComponentType } from 'react';
export interface BlankManagedRootViewProps {
    pageView?: ComponentType;
}
/**
 * Blank managed root view does not nothing except for rendering the current
 * page view.
 *
 * This is the default managed root view.
 */
export declare class BlankManagedRootView<P extends BlankManagedRootViewProps = BlankManagedRootViewProps, S = unknown, SS = unknown> extends Component<P, S, SS> {
    static get defaultProps(): {
        pageView: null;
    };
    /**
     * @inheritDoc
     */
    render(): import("react").ReactElement<{}, string | import("react").JSXElementConstructor<any>> | null;
}
//# sourceMappingURL=BlankManagedRootView.d.ts.map