import { MmUIComponent } from './component' /** Input component */ export declare class MmInput extends MmUIComponent { /** Input type */ type: 'text' | 'password' /** Input value */ value: string | number /** Select text on focus input */ selectOnFocus: boolean /** Sensory with input source */ composition: boolean /** Press enter callback */ onEnter(e: Event): void /** Suffix icon name */ suffixIcon: string /** Preffix icon name */ prefixIcon: string /** Input size */ size: 'large' | 'medium' | 'small' }