import type { Name } from "../common/name";
export type Language = {
    id: number;
    name: string;
    official: boolean;
    iso639: string;
    iso3166: string;
    names: Name[];
};
