import { JSX } from "solid-js"; import { ElementType, HTMLHopeProps } from "../types"; export declare type AccordionButtonProps = HTMLHopeProps; /** * AccordionButton is used expands and collapses an accordion item. * It must be a child of `AccordionItem`. * * Note 🚨: Each accordion button must be wrapped in an heading tag, * that is appropriate for the information architecture of the page. */ export declare function AccordionButton(props: AccordionButtonProps): JSX.Element; export declare namespace AccordionButton { var toString: () => string; } //# sourceMappingURL=accordion-button.d.ts.map