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