import React from 'react'; interface Labels { helpTextFor?: string; } export interface MdInputProps extends React.InputHTMLAttributes { label?: string; labels?: Labels; error?: boolean; errorText?: string; supportText?: string; hideErrorIcon?: boolean; helpText?: string; outerWrapperClass?: string; suffix?: string | React.ReactNode; prefixIcon?: React.ReactNode; hideNumberArrows?: boolean; /** * v6.x.x: The mode "normal" is deprecated and will be removed in a future version. Please use "medium" instead */ mode?: 'small' | 'medium' | 'large' | 'normal'; } export declare const MdInput: React.ForwardRefExoticComponent>; export default MdInput;