/** * Markdown renderer with accordion support */ interface IMDWithAccordion { children: React.ReactNode; className?: string; openFirst?: boolean; } export default function MDWithAccordion({ children, className, openFirst, }: IMDWithAccordion): import("react/jsx-runtime").JSX.Element; export {};