import { CarMake } from "./types"; import { CarModelsType } from "./types/modelTypes"; import { CarTrimType } from "./types/trimTypes"; import { CarYearsType } from "./types/yearTypes"; interface CarMakeItemType { label: CarMake; value: CarMake; disabled?: boolean; } interface TranslationCopy { carMake: string; carModel: string; carYear: string; carTrim: string; } interface Car { make: CarMake; model: CarModelsType; year: CarYearsType; trim: CarTrimType; } export type { CarMakeItemType, TranslationCopy, Car }; //# sourceMappingURL=interfaces.d.ts.map