UNPKG

347 BTypeScriptView Raw
1import React, { ReactNode } from 'react';
2export declare const useHint: () => {
3 hintRef: React.MutableRefObject<HTMLInputElement | null>;
4 hintText: string;
5};
6export interface HintProps {
7 children: ReactNode;
8 className?: string;
9}
10declare const Hint: ({ children, className }: HintProps) => React.JSX.Element;
11export default Hint;