import * as React from "react"; import type { FormComponent } from "../FormComponent"; interface AccordionGroupProps { /** 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 `"accordion-section"`. */ declare const AccordionGroup: ({ className, component }: AccordionGroupProps) => React.JSX.Element; export default AccordionGroup;