import React, { ReactNode } from 'react'; import '@vonage/vwc-accordion'; /** * @param {boolean} multi attribute: <VwcAccordion multi /> */ declare const VwcAccordion: (props: { children?: ReactNode; slot?: string | undefined; id?: string | undefined; style?: React.CSSProperties | undefined; ref?: React.RefObject | ((instance: HTMLDivElement | null) => void) | null | undefined; multi?: boolean | undefined; }) => JSX.Element; export default VwcAccordion;