we-insights-react-native
Version:
[we-insights] is a powerful utility library designed to streamline data collection processes for WeApp employees. It simplifies the process of gathering, storing, and managing data within WeApp projects, making it an invaluable tool for enhancing efficien
18 lines • 441 B
TypeScript
import React from 'react';
interface InputStyle {
backgroundColor?: string;
textColor?: string;
borderColor?: string;
fontFamily?: string;
}
interface InputProps {
onChangeText: (_text: string) => void;
value: string;
placeholder: string;
multiline?: boolean;
numberOfLines?: number;
style: InputStyle;
}
export declare const Input: React.FC<InputProps>;
export {};
//# sourceMappingURL=Input.d.ts.map