/** * @slot default - The label to display under the waypoint. * @slot node - Slot to place content inside a step node. * @slot node-triggered - Used in conjunction with dxp-event to show different content when event triggered */ export declare class DxpWayfinderStep { /** * Set the direction that the mobile popup will appear. */ path: string; /** * Set to true to disable navigation on this step. * Note: `path` property is still required to determine active node. This will be overridden if used in conjunction with `dxp-event`. */ noRedirect: boolean; /** * (optional) Provide name of event to watch to conditionally display `node` or `node-complete` slots. */ dxpEvent?: string; /** * Only active on the exact href match, * and not on child routes */ exact: boolean; /** * Only active on the exact href match * using every aspect of the URL including * parameters. */ strict: boolean; /** * If a `dxp-event` is provided, this state will monitor whether or not the event has occurred. */ eventTriggered: boolean; private getChangedValue; render(): any; }