import * as React from "react"; import type { FormComponent } from "../FormComponent"; interface TabGroupProps { /** The CSS class name of the root element. */ className?: string; /** * The `FormComponent` being used to render the Form Elements within this Component. */ component: FormComponent; } /** * This component contains a set of "Section" Form Elements with a `format` of `"tab-section"`. */ declare const TabGroup: ({ className, component }: TabGroupProps) => React.JSX.Element; export default TabGroup;