import * as React from "react"; export interface Props { className?: string; title?: string; children?: any; id?: string; isOpen?: boolean; variant?: "h2" | "h3" | "h4" | "h5"; } declare const Accordion: React.FC; export default Accordion;