matrix-react-sdk
Version:
SDK for matrix.org using React
13 lines (12 loc) • 340 B
TypeScript
import React, { ReactElement } from "react";
import { FocusHandler, Ref } from "./types";
interface IProps {
inputRef?: Ref;
children(renderProps: {
onFocus: FocusHandler;
isActive: boolean;
ref: Ref;
}): ReactElement<any, any>;
}
export declare const RovingTabIndexWrapper: React.FC<IProps>;
export {};