import React from 'react'; export declare type InputIconState = 'CLEARABLE' | 'SUBMITABLE' | 'ERROR'; declare type RoundedInputProps = { errorMessage?: string; inputIconState: InputIconState; onClear?: () => void; onEnter?: () => void; onValueChange: (value: string) => void; isError: boolean; value: string; placeholder?: string; }; declare const RoundedInput: React.FC; export default RoundedInput;