interface commonType { id: number, name: string | null, ta: string | null, hi: string | null, kn : string | null } export interface RegionWiseBranchesType { south: commonType[] west: commonType[] east: commonType[] central: commonType[] north: commonType[] }