import React, { ReactNode } from 'react'; import '@vonage/vwc-text'; /** * @param {VVDFontFace | undefined} fontFace attribute: <VwcText font-face /> * @param {TextConnotation | undefined} connotation attribute: <VwcText connotation /> * @param {boolean} tight attribute: <VwcText tight /> */ declare const VwcText: (props: { children?: ReactNode; slot?: string | undefined; id?: string | undefined; style?: React.CSSProperties | undefined; ref?: React.RefObject | ((instance: HTMLDivElement | null) => void) | null | undefined; fontFace?: any; connotation?: any; tight?: boolean | undefined; }) => JSX.Element; export default VwcText;