import React from 'react'; import { ContractParamValue } from '../../lib'; type TextInputProps = { placeholder?: string; handleChange: (event: React.ChangeEvent) => void; value?: ContractParamValue; }; export declare const TextInput: ({ placeholder, handleChange, value, }: TextInputProps) => React.JSX.Element; export {};