import { CSSProperties, VNode } from 'vue'; interface HintProps { className?: string; style?: CSSProperties; value?: string[]; onHintClick?: (item: string) => void; renderHintBox?: (props: { content: string; index: number; onHintClick: () => void; }) => VNode; } declare const Hint: (props: HintProps) => import("vue/jsx-runtime").JSX.Element; export default Hint;