import { type NavModelItem } from '@grafana/data';
import { type IconName } from '../../types/icon';
interface ModalTab {
    value: string;
    label: string;
    icon?: IconName;
    tabSuffix?: NavModelItem['tabSuffix'];
}
interface Props {
    title: string;
    tabs: ModalTab[];
    activeTab: string;
    onChangeTab(tab: ModalTab): void;
}
export declare const ModalTabsHeader: ({ title, tabs, activeTab, onChangeTab }: Props) => import("react/jsx-runtime").JSX.Element;
export {};
