botframework-webchat-component
Version:
React component of botframework-webchat
9 lines • 317 B
TypeScript
import type { FC, MutableRefObject } from 'react';
type FocusRedirectorProps = {
className?: string;
onFocus?: () => void;
redirectRef?: MutableRefObject<HTMLElement>;
};
declare const FocusRedirector: FC<FocusRedirectorProps>;
export default FocusRedirector;
//# sourceMappingURL=FocusRedirector.d.ts.map