import type { FC } from "react"; import type { Layout as LayoutModel } from "../layout"; /** * Properties for Layout. */ export interface LayoutProps { /** * The VertiGIS Studio layout to render. */ layout: LayoutModel; /** * Callback to be called when this component has finished updating. */ onUpdate?: () => void; } /** * Renders a VertiGIS Studio layout into a React component hierarchy. */ declare const Layout: FC; export default Layout;