import React, { ReactNode } from "react"; export interface RcsbTabsInterface { tabList: Array<{ key: T; title: string; additionalComponent?: ReactNode; }>; default: T; id: string; onSelect(t: T): void; onMount(t: T): void; } export declare class RcsbTabs extends React.Component, {}> { static readonly UI_SUFFIX: string; static readonly SELECT_SUFFIX: string; constructor(props: RcsbTabsInterface); render(): ReactNode; componentDidMount(): void; }