import { PropsWithChildren } from 'react'; type Props = { ref?: () => void; id: string; label: React.ReactNode | string; elements: number; height?: number; withoutArrow?: boolean; hideArrow?: boolean; style?: React.CSSProperties; onExpand?: (expanded: boolean) => void; }; export default function Accordion(props: PropsWithChildren): import("react/jsx-runtime").JSX.Element; export {};