import React from 'react'; type AppProps = { id: string; name: string; logo?: string; onlylogo?: string; endpoint: string; introUrl?: string; children?: React.ReactNode; }; export declare function useApp(): AppProps; export default function App({ id, name, logo, onlylogo, endpoint, introUrl, children }: AppProps): React.JSX.Element; export {};