@ffsm/native-ui
Version:
UI Components for React Native
10 lines (9 loc) • 521 B
TypeScript
import { TextInput as RNInput } from 'react-native';
import { InputProps } from '../input';
import { InputWrapperAdditionalProps, InputWrapperProps } from '../input-wrapper';
type BaseInputProps = Omit<InputProps, 'styles'>;
export interface TextInputProps extends InputWrapperAdditionalProps, BaseInputProps {
styles?: InputWrapperProps['styles'] & InputProps['styles'];
}
export declare const TextInput: import("react").ForwardRefExoticComponent<TextInputProps & import("react").RefAttributes<RNInput>>;
export {};