import type { IconProp } from "@fortawesome/fontawesome-svg-core"; import type { PropsFor } from "../../types.js"; export type AccordionActionProps = PropsFor<"button", { /** Font Awesome icon reference (or string if using library) */ icon: IconProp; /** Label text for a11y screen readers */ "aria-label": string; /** Click event function */ onClick: React.MouseEventHandler; }>; declare const AccordionAction: import("react").ForwardRefExoticComponent>; export default AccordionAction;