export interface ProductMapping {
    id: number;
    name: string;
}
export declare function loadProductMappings(): ProductMapping[];
export declare function getProductName(modelId: number): string | null;
export declare function getProductMappings(): ProductMapping[];
