import { JSXElement } from "solid-js"; type AccordionItemProps = { name?: string; style?: any; title?: any; icon?: JSXElement; children?: any; }; export declare function Item(props: AccordionItemProps): import("solid-js").JSX.Element; export {};