import { default as React } from 'react'; import { SearchProps as AntSearchProps } from 'antd/es/input'; import { BaseComponentProps, DataSetConfig } from '../../types/common'; /** * AndInputSearch Props 接口 */ export interface AndInputSearchProps extends Omit, BaseComponentProps, DataSetConfig { prefix?: string; suffix?: string; addonBefore?: string; addonAfter?: string; changeAction?: string; searchAction?: string; onChange?: (value: string) => void; onSearch?: (value: string) => void; } export declare const AndInputSearch: React.FC; export default AndInputSearch; //# sourceMappingURL=index.d.ts.map