import React from 'react'; import { ConfigType } from '../../app'; import { Plugin } from '../../plugins'; export interface AppProps { style?: React.CSSProperties; className?: string; config: ConfigType; plugins: Plugin[]; debugHooks?: string[]; hide: boolean; } declare function _Layout(props: AppProps): JSX.Element; export declare const App: React.MemoExoticComponent; export {};