UNPKG

@douyinfe/semi-ui

Version:

A modern, comprehensive, flexible design system and UI library. Connect DesignOps & DevOps. Quickly build beautiful React apps. Maintained by Douyin-fe team.

16 lines (15 loc) 444 B
import React from "react"; interface HintProps { className?: string; style?: React.CSSProperties; hints?: string[]; selecting?: boolean; onHintClick?: (item: string) => void; renderHintBox?: (props: { content: string; index: number; onHintClick: () => void; }) => React.ReactNode; } declare const Hint: React.MemoExoticComponent<(props: HintProps) => React.JSX.Element>; export default Hint;