import { BaseControlProps } from './BaseControl'; import { IconName } from '../../../../Common/theming/icons'; export declare type WidthSize = 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'fill'; export declare type HeightSize = 'normal' | 'large'; export interface CommonInputTextProps extends BaseControlProps { placeholder?: string; height?: HeightSize; width?: WidthSize; hasError?: boolean; maxLength?: number; floatingLabel?: string; onFocus?: (e: any) => void; onBlur?: (e: any) => void; } export interface CommonInputTextWithIconProps extends CommonInputTextProps { iconName?: IconName; }