//#region src/utils/types/ViewportRangeKeys.d.ts
type ViewportRangeKeys = 'narrow' | 'narrowLandscape' | 'regular' | 'wide' | 'portrait' | 'landscape';
type WidthOnlyViewportRangeKeys = Exclude<ViewportRangeKeys, 'narrowLandscape' | 'portrait' | 'landscape'>;
//#endregion
export { ViewportRangeKeys, WidthOnlyViewportRangeKeys };