/** Structure holding the elements about a region */
export interface Region {
    /** Description of a region */
    description: string;
    /** Name of a region */
    name: string;
}
//# sourceMappingURL=Region.d.ts.map