import React from 'react'; import { TextInputProps } from '../TextInput/TextInput'; interface InputProps extends TextInputProps { label?: string; error?: string; } export declare const Input: React.FC; export {};