import type { BaseParams, NavigationNode, ProductContextParams } from './common/mod.ts';


export interface NavigationTreeParams extends BaseParams, ProductContextParams {}

export interface NavigationTree {
  /** Root node for the entire navigation tree */
  tree: NavigationNode;
}
