react-bootstrap-typeahead
Version:
React typeahead with Bootstrap styling
12 lines (11 loc) • 347 B
TypeScript
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;