import { DotCMSHttpClient } from '../utils/DotCMSHttpClient'; import { DotCMSNavigationItem } from '../models'; /** * Retrieve information about the dotCMS file and folder tree with the {@link https://dotcms.com/docs/latest/navigation-rest-api | Navigation REST API } * */ export declare class DotApiNavigation { private dotCMSHttpClient; constructor(httpClient: DotCMSHttpClient); get(depth?: string, location?: string): Promise; }