import * as React from 'react'; import HIDComponentProps from '../ComponentModel/HIDComponentModel'; export interface HIDAccordionData { heading: any /** Heading can be string or component */; content: any /** Content can be string or component */; } export interface HIDAccordionProps extends HIDComponentProps { /**Data for the accordion. Specify the JSON field which is used as accordion's key*/ data: [HIDAccordionData]; } export interface HIDAccordionState { } /** * ### The API documentation of the HID Accordion React component. Learn more about the properties and the API Methods. * */ export default class HIDAccordion extends React.Component { private getAccordionComponent; render(): "" | JSX.Element[]; }