/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 *  Represents the possible options for the fill style of the BottomNavigation ([see example](https://www.telerik.com/kendo-angular-ui/components/navigation/bottomnavigation/appearance)).
 *
 * The possible values are:
 * * `flat`&mdash;Sets the BottomNavigation fill style to a flat, borderless appearance.
 * * `solid`&mdash;Sets the BottomNavigation fill style to a solid, filled background.
 */
export type BottomNavigationFill = 'flat' | 'solid';
