export default DefaultView;
/**
 * Component to display the default view.
 * @function DefaultView
 * @param {Object} content Content object.
 * @returns {string} Markup of the component.
 */
declare function DefaultView(props: any): string;
declare namespace DefaultView {
    namespace propTypes {
        let content: any;
    }
}
