export interface IRegion {
    available: boolean;
    features: string[];
    name: string;
    sizes: string[];
    slug: string;
}
