import React from 'react'; import { DOMProps, QAProps } from '@gravity-ui/uikit'; import "./Tabs.css"; export type TabsProps = QAProps & DOMProps & { items: { id: string; title: string; icon?: React.ReactNode; }[]; activeId?: string; onSelectItem?: (id: string) => void; onDeleteItem?: (id: string) => Promise; allowDelete?: boolean; }; export declare const Tabs: (props: TabsProps) => import("react/jsx-runtime").JSX.Element;