import { AppInfo } from "../../../shared/types/global"; import { NarraLeaf } from "@narraleaf/shared"; import { RendererAppRootProps } from "../components.types"; type AppProps = { appInfo: AppInfo; config: RendererAppRootProps; api: typeof window[typeof NarraLeaf]; }; export declare function App({ appInfo, api, config }: AppProps): import("react/jsx-runtime").JSX.Element; export {};