export declare type WayfinderOrientation = 'horizontal' | 'vertical'; export declare type WayfinderPopupDirection = 'top' | 'bottom'; /** * @slot default - For child dxp-wayfinder-step components. * @part mobile-float-box - Represents the "floating" box that pops up when the display toggles to mobile */ export declare class DxpWayfinder { el: HTMLDxpWayfinderElement; /** * Required to set relative container Id for mobile navigation pop-up */ containerId: string; /** * Change this to display steps horizontally (default) or vertically */ orientation: WayfinderOrientation; /** * Set the direction that the mobile popup will appear */ directionPopup: WayfinderPopupDirection; private wayfinderContainer?; private hiddenWayfinder; componentDidRender(): void; private getMobileFloatBox; render(): any; }