import { FC, HTMLAttributes } from "react"; export interface VehicleColorsProps extends HTMLAttributes { interiorColor: string; exteriorColor: string; intCode: string; extCode: string; } declare const VehicleColors: FC; export default VehicleColors; //# sourceMappingURL=VehicleColors.d.ts.map