export declare const ROOT_PATH = "/"; export declare const PRODUCTS_PATH = "/products"; export type SDKRouterMode = "history" | "hash"; export declare function setSDKRouterMode(mode?: SDKRouterMode): void; export declare function getSDKRouterMode(): SDKRouterMode; export declare function routePath(path: string): string; export declare function rootPath(): string; export declare function productListPath(categoryId?: string): string; export declare function productListFilterPath(code: string, value: string): string; export declare function productListSearchPath(keyword: string): string; export declare function productDetailPath(productId: string, filter?: { code: string; value: string; }): string; export declare function productIdFromLocation(locationRef?: Pick): string | null; export declare function categoryFromLocation(locationRef?: Pick): string | null; export declare function queryValueFromLocation(key: string, locationRef?: Pick): string | null;