import type { App } from "../../App"; import React from "react"; type Props = { app: App; }; export declare function AppLayout({ app }: Props): React.JSX.Element; export declare function LocalAppLayout({ app, children, }: Props & { children?: React.ReactNode; }): React.JSX.Element; export {};