import React from "react"; import "./accordion.scss"; export declare type AccordionProps = JSX.IntrinsicElements["div"] & { /** An alternative version of the accordion */ alternative?: boolean; /** An event handler triggered when an accordion toggle is clicked */ onToggle?: React.MouseEventHandler; /** Places the icon toggle on the right side */ inverted?: boolean; /** The default `active` item. (Overriding the native type) */ defaultValue?: number; }; /** Accordions show and hide information that is not necessary at all time with one click. */ export declare const Accordion: React.FC;