import React from "react"; interface Props { /** * App view body */ children: JSX.Element[] | JSX.Element; /** * The app title */ title?: string; } export interface RefInstance { /** * CSS body container height */ bodyHeight?: string; } declare const App: React.ForwardRefExoticComponent>; export default App;