import { ReactNode } from 'react';
export interface Props {
/** Children should be a single or an array of */
children: ReactNode;
className?: string;
/** For hiding the bottom border (on PageHeader for example) */
hideBorder?: boolean;
}
/**
* A composition component for rendering a TabBar with Tabs for navigation.
*
* https://developers.grafana.com/ui/latest/index.html?path=/docs/navigation-tabs--docs
*/
export declare const TabsBar: import("react").ForwardRefExoticComponent>;