import React from 'react'; import './TextInput.scss'; export type InputProps = { disabled?: boolean; error?: boolean | string; focus?: boolean; label?: string; onChange?: (value: string) => void; onChangeEvent?: (event: React.ChangeEvent) => void; }; export type TextInputProps = InputProps & Omit, 'onChange'>; export declare const TextInput: React.ForwardRefExoticComponent, "onChange"> & React.RefAttributes>;