import React from 'react'; import { Props as InputProps } from '../re-input'; export interface Props extends InputProps { /** * 显示搜索按钮 */ showBtn?: boolean; /** * 搜索按钮类名 */ btnCls?: string; /** * 图标的颜色 */ iconColor?: string; /** * 输入框wrap类名 */ inputWrapCls?: string; /** * 输入框类名 */ inputCls?: string; /** * 适老模式,开启后不同type的按钮文字和尺寸都会变大 */ elderly?: boolean; /** * 搜索按钮样式 */ btnStyle?: React.CSSProperties; /** * 输入框wrap样式 */ inputWrapStyle?: React.CSSProperties; /** * 阴影 */ shadow?: boolean; } declare const _default: ({ showBtn, value, onChange, style, btnCls, iconColor, inputWrapStyle, inputCls, className, inputWrapCls, elderly, btnStyle, shadow, ...props }: Props) => React.JSX.Element; export default _default;