import React from "react"; type HeadingLevel = 1 | 2 | 3 | 4 | 5 | 6; type TabAttributes = { [key: string]: string; }; export interface Tab { id?: string; title: string; showTitle?: boolean; content: React.ReactNode; attributes?: TabAttributes; } export interface Props { title: string; headingLevel?: HeadingLevel; titleClasses?: string; tabs: Tab[]; dataTestId?: string; } export declare const Tabs: (props: Props) => React.JSX.Element; export {};