import React from "react"; import { TabProps } from "@docusaurus/theme-common/internal"; export interface SchemaTabsProps extends TabProps { /** * Optional callback fired when the selected tab changes. * Receives the index of the newly selected tab. */ onChange?: (index: number) => void; } export default function SchemaTabs(props: SchemaTabsProps): React.JSX.Element | null;