UNPKG

react-bootstrap-typeahead

Version:
12 lines (11 loc) 347 B
import React, { ReactNode } from 'react'; export declare const useHint: () => { hintRef: React.MutableRefObject<HTMLInputElement | null>; hintText: string; }; export interface HintProps { children: ReactNode; className?: string; } declare const Hint: ({ children, className }: HintProps) => React.JSX.Element; export default Hint;