import { EntityCollection, EntityCustomView } from "../../models"; export declare type NavigationViewInternal = NavigationViewEntityInternal | NavigationViewCollectionInternal | NavigationViewEntityCustomInternal; interface NavigationViewEntityInternal { type: "entity"; entityId: string; path: string; parentCollection: EntityCollection; } interface NavigationViewCollectionInternal { type: "collection"; path: string; collection: EntityCollection; } interface NavigationViewEntityCustomInternal { type: "custom_view"; path: string; view: EntityCustomView; } export declare function getNavigationEntriesFromPathInternal(props: { path: string; collections: EntityCollection[]; customViews?: EntityCustomView[]; currentFullPath?: string; }): NavigationViewInternal[]; export {};