/**
 * Master list of tabs available for the iOS app Tab Bar (footer navigation)
 *
 * @packageDocumentation
 */
export type Tab = 
/**
 * not currently in use:
 *| "cityGuide"
 *| "favorites"
 */
"favorites" | "home" | "inbox" | "profile" | "search";
