UNPKG

@area2-ai/a2-react-keystroke-package

Version:

# a2-react-keystroke-package

11 lines (10 loc) 438 B
import React from 'react'; interface Props extends React.InputHTMLAttributes<HTMLInputElement> { ref?: React.Ref<HTMLInputElement>; } /** * Component that renders a text input field and generates an A2CapturePayload data. * @param {React.Ref<HTMLInputElement>} [ref] - Optional ref for the input element. */ export declare const A2IosTextInput: ({ ref, value, onChange, ...rest }: Props) => React.JSX.Element; export {};