import React from 'react'; import { ReactNode } from 'react'; import { BulmaColor, BulmaSize } from './utils'; export interface InputProps { color?: BulmaColor; size?: BulmaSize; icon?: ReactNode; iconAfter?: ReactNode; type?: string; placeholder?: string; readOnly?: boolean; value?: string; onChange?: (e: React.ChangeEvent) => void; } export declare function Input({ color, size, icon, iconAfter, type, placeholder, readOnly, value, onChange, }: InputProps): JSX.Element;