import { IconNameWithSize } from '@talend/icons'; export type TabsPropTypes = { children: React.ReactNode[]; }; export declare function Tabs({ children }: TabsPropTypes): import("react/jsx-runtime").JSX.Element; export declare namespace Tabs { var displayName: string; } export type TabPropTypes = { ['aria-controls']: string; title: string; disabled?: boolean; icon?: IconNameWithSize<'S'>; tag?: string | number; statusDot?: string; tooltip?: string; error?: boolean; }; export declare function Tab(props: TabPropTypes): import("react/jsx-runtime").JSX.Element; export declare namespace Tab { var displayName: string; }