import React from 'react'; interface Props { value: string; id: string; onChange: (e: any) => void; error?: boolean; typeError?: string; } declare const _default: React.MemoExoticComponent<({ value, id, onChange, error, typeError }: Props) => JSX.Element>; export default _default;