import { edgeNavConfig } from './_storyNavConfigs'; declare const KNOWN_PRODUCTS: readonly ["home", "edge", "ai-hypervisor", "infra-discovery", "security-testing", "settings"]; export type Product = (typeof KNOWN_PRODUCTS)[number]; export declare const PRODUCT_CONFIGS: Record, { config: typeof edgeNavConfig; }>; export declare function deriveProduct(pathname: string): Product; export declare function navigateToProduct(product: Product): void; export {};