import * as React from 'react'; export interface Props { /** * Enables Tabbar with labels * * @default false */ labels?: boolean; /** * Enables Tabbar with icons * * @default false */ icons?: boolean; } // @ts-ignore interface TabbarProps extends Omit, keyof Props>, Props { ref?: React.Ref; } declare const Tabbar: React.ComponentType; export default Tabbar;