import React from 'react'; export interface BreadcrumbItem { title: string; link: string; } export interface PageNode { title: string; link: string; additionalData: unknown; children: PageNode[]; } export interface IWPRoutesStore { getBreadcrumbs(): BreadcrumbItem[]; getSiteMap(maxDeep?: number): PageNode[]; getTailUrl(): string; } export declare const WPRoutesStoreContext: React.Context; export declare const useWPRoutesStore: () => IWPRoutesStore;