import React, { ReactNode } from 'react'; import '@vonage/vwc-icon'; /** * @param {IconConnotation | undefined} connotation attribute: <VwcIcon connotation /> * @param {string | undefined} type attribute: <VwcIcon type /> * @param {boolean | undefined} inline attribute: <VwcIcon inline /> * @param {IconSize | undefined} size attribute: <VwcIcon size /> * @param {string} ariaLabel attribute: <VwcIcon aria-label /> */ declare const VwcIcon: (props: { children?: ReactNode; slot?: string | undefined; id?: string | undefined; style?: React.CSSProperties | undefined; ref?: React.RefObject | ((instance: HTMLDivElement | null) => void) | null | undefined; connotation?: any; type?: string | undefined; inline?: any; size?: any; ariaLabel?: string | undefined; }) => JSX.Element; export default VwcIcon;