import { HTMLAttributes, default as React } from 'react'; export interface AccordionPanelProps extends Omit, 'role'> { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; } declare const AccordionPanel: React.ForwardRefExoticComponent>; export default AccordionPanel; //# sourceMappingURL=AccordionPanel.d.ts.map