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