TypeAlias.FeatureLabels
type FeatureLabels = {
common: {
included: string;
notIncluded: string;
tailorMade: string;
};
features: Record<string, {
label: string;
type: "custom" | "quantity" | "switch";
unit?: string;
values?: Record<string, string>;
}>;
locale: "en-US" | "fr-FR" | "es-ES" | "it-IT";
};