import type { Floorplan } from '../types/index.js'; /** * Creates a value suitable for use as a semantic object for navigation intents. * Removes specific characters that would break the navigation. * * @param appId * @returns */ export declare const getSemanticObject: (appId: string) => string; export declare const getFlpId: (appId: string, action?: string | undefined) => string; /** * Returns the display label for a given floorplan template type. * Falls back to the templateType value itself if no translation is found. * * @param templateType - the floorplan template type (e.g. `FloorplanFE.FE_LROP`) * @param odataVersion - optional OData version suffix (e.g. `'2'` or `'4'`) * @returns the display label (e.g. `'List Report Page V4'`) */ export declare function getFloorplanLabel(templateType: Floorplan, odataVersion?: string): string; /** * Returns the description for a given floorplan template type. * * @param templateType - the floorplan template type (e.g. `FloorplanFE.FE_LROP`) * @returns the description string */ export declare function getFloorplanDescription(templateType: Floorplan): string; //# sourceMappingURL=app-helpers.d.ts.map