import { CountryISO } from "../types"; export namespace birthplace { interface Birthplace { City: string; Country: CountryISO; } }