export type KdProduct = "unknown" | "flagship" | "xinghan" | "cangqiong" | "enterprise"; export type KdPlatform = "unknown" | "cosmic" | "enterprise-csharp" | "enterprise-python"; export type KdTechStack = "unknown" | "java-bos" | "java-cosmic" | "csharp-bos" | "python-bos" | "ksql"; export type KdLanguage = "unknown" | "java" | "csharp" | "python" | "sql"; export type KnowledgeScope = "common" | "flagship" | "enterprise" | "enterprise-python" | "cosmic" | "xinghan" | "cangqiong"; export interface ProductProfile { product: KdProduct; displayName: string; platform: KdPlatform; techStack: KdTechStack; language: KdLanguage; knowledgeScope: KnowledgeScope; requiresMetadataVerification: boolean; notes: string[]; } export declare function profileForProduct(product: KdProduct | undefined): ProductProfile; export declare function resolveProductProfile(input: string | undefined): ProductProfile; export declare function normalizeProduct(value: string | undefined): KdProduct; export declare function isKnownProduct(product: KdProduct | undefined): boolean; export declare function formatProductProfile(profile: ProductProfile | undefined): string;