import * as React from 'react'; import { PolymorphicBoxProps } from '../../box/Box'; type AccordionButtonProps = PolymorphicBoxProps<'button'> & { children: React.ReactNode; }; declare const AccordionButton: React.FC; export default AccordionButton;