import React from "react"; import { TabProps } from "@docusaurus/theme-common/internal"; export interface TabListProps extends TabProps { label: string; id: string; } export default function ApiTabs(props: TabListProps): React.JSX.Element;