@activatortube/react-native-form
Version:
react native form
10 lines • 357 B
TypeScript
/// <reference types="react" />
import { TextInputProps } from 'react-native';
import { FormItemProps } from './Base';
import BaseFormItem from './BaseFormItem';
declare type InputProps = FormItemProps & TextInputProps;
export default class Input extends BaseFormItem<InputProps> {
render(): JSX.Element;
}
export {};
//# sourceMappingURL=Input.d.ts.map