/** * Tabs overflow mode in TabContainer. * @public */ declare enum OverflowMode { /** * End type is used if there should be only one overflow with hidden the tabs at the end of the tab container. * @public */ End = "End", /** * StartAndEnd type is used if there should be two overflows on both ends of the tab container. * @public */ StartAndEnd = "StartAndEnd" } export default OverflowMode;