import React, { RefObject } from "react";
type Props = {
    setContextRef?: (ref: RefObject<HTMLInputElement | null>) => void;
};
declare const Input: (props: Props) => React.JSX.Element;
export default Input;
