import { UnwrapRef } from 'vue'; import { ComponentNode, HomePageConfig } from './types/canvas'; import { SectionComponentNodesBySectionId, ComponentNodesById } from './composables/useCanvas'; export declare function navigateToHome({ homePageConfig, canvasContent, componentNodesById, skipSetPreviousLocation, }: { homePageConfig?: HomePageConfig; canvasContent: ComponentNode[]; componentNodesById?: UnwrapRef; skipSetPreviousLocation?: boolean; }): Promise; export declare function navigateToEmbeddableForPages({ appName, canvasPages, componentNodesById, sectionComponentNodesBySectionId, isEditMode, canvasContentElement, }: { appName: string; canvasPages: ComponentNode[][]; componentNodesById: UnwrapRef; sectionComponentNodesBySectionId: UnwrapRef; isEditMode: boolean; canvasContentElement?: Element; }): Promise;