import * as React from "react"; import { HeadingLevel, AccordionTitleAppearances } from "../types"; export interface AccordionItemTitleProps { /** * Changes visual design attributes to communicate the status of the accordion item */ appearance?: AccordionTitleAppearances; /** * Human-readable selector used for writing tests */ "data-cy"?: string; /** * Whether the accordion item can be expanded */ disabled?: boolean; /** * Priority of the heading. Numbers map to

through

*/ headingLevel?: HeadingLevel; /** * Allows custom styling */ className?: string; children: React.ReactNode; } declare const AccordionItemTitle: ({ appearance, children, "data-cy": dataCy, disabled, headingLevel, className }: AccordionItemTitleProps) => React.JSX.Element; export default AccordionItemTitle;