UNPKG

@wix/design-system

Version:

@wix/design-system

14 lines 609 B
import React from 'react'; import { EllipsisCommonProps } from '../common/Ellipsis'; import { RawTextProps } from './RawText'; type CaptionProps = EllipsisCommonProps & Omit<RawTextProps, 'renderElement' | 'renderChildren'> & { caption?: 'c1' | 'c2'; }; type Props = CaptionProps; declare const CaptionWithEllipsis: { ({ caption, tagName, ellipsis, appendTo, flip, fixed, placement, zIndex, enterDelay, exitDelay, showTooltip, ...propsWithNoDefaults }: Props): React.JSX.Element; displayName: string; propTypes: any; }; export default CaptionWithEllipsis; //# sourceMappingURL=Caption.d.ts.map