import { type ReactNode } from 'react';
export interface Props extends Omit<React.HTMLAttributes<HTMLDivElement>, 'children'> {
    /** Children should be a single <Tab /> or an array of <Tab /> */
    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<Props & import("react").RefAttributes<HTMLDivElement>>;
