import "./Accordion.css"; import { ComponentProps, ElementType, ForwardedRef, ReactNode } from "react"; export interface InnerAccordionPanelProps { /** * The panel item props */ panel?: { key: string; }; /** * An HTML element type or a custom React element type to render as. */ as?: ElementType; /** * React children. */ children: ReactNode; /** * @ignore */ forwardedRef: ForwardedRef; } export declare function InnerAccordionPanel(props: InnerAccordionPanelProps): JSX.Element; export declare const AccordionPanel: import("../../shared").OrbitComponent; export declare type AccordionPanelProps = ComponentProps;