import { FeatureEndpoint } from '@amalto/typings'; import { MenuItemModel } from '../models/MenuItemModel'; export declare function getDefaultRoute(appEndpoints: { [id: string]: FeatureEndpoint; }): string | undefined; export declare function isRootHash(): boolean; export declare function defaultMenuByKey(option: { instanceName: string; entry: MenuItemModel; selectMenu: (key: string) => void; }): void; export declare function goToDefaultMenu(instanceName?: string): void; export declare function getEndpointFromKey(entries: MenuItemModel[], key: string): string; export declare function pathFromAppEndpoint(appEndpoints: { [id: string]: FeatureEndpoint; }, path: string): string; export declare function getDefaultHash(useHomepages: boolean): string; export declare function getHomePagesPath(appEndpoints: { [id: string]: FeatureEndpoint; }): string; export declare function getCompletePath(featureId: string, path: string): string;