import { ICity } from "./cities"; export interface IState { id: number; name: string; state_code: string; to_string: string; country_name: string; country: number; country_id?: number; cities: ICity[] | number[]; }