import * as React from 'react'; export interface Props { /** * Enables Tabbar with labels * * @default false */ labels?: boolean; } interface TabbarProps {} interface TabbarProps extends React.HTMLAttributes {} interface TabbarProps extends Props {} declare const Tabbar: React.FunctionComponent; export default Tabbar;