@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.
15 lines (14 loc) • 419 B
TypeScript
import React from "react";
interface HintProps {
className?: string;
style?: React.CSSProperties;
value?: string[];
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;