import { CarYearsForInputItems } from "../typesEnumsInterfacesConsts/interfaces/inputInterfaces"; import { CarMake } from "../typesEnumsInterfacesConsts/types"; import { CarModelsType } from "../typesEnumsInterfacesConsts/types/modelTypes"; interface GetModelYearsProps { make: CarMake; model: CarModelsType; } declare const getModelYears: (x: GetModelYearsProps) => CarYearsForInputItems[]; export { getModelYears }; //# sourceMappingURL=getModelYears.d.ts.map