/// import { FormValues, AnyKeyProps, AySearchTableField, AyFormField } from 'amiya'; interface IProps { /** 查询数据 */ searchValues: FormValues; /** 扩展顺序 */ extendValues: FormValues; /** 不展示的 keys */ noVisibleKeys: Array; /** label 的翻译字典 */ keyMap: AnyKeyProps; /** 查询的配置 */ searchFields: Array; /** 扩展的配置 */ extendFields: Array; /** 删除查询数据 */ onRemoveSearchValue: (key: string) => void; /** 删除扩展数据 */ onRemoveExtendValue: (key: string) => void; /** 清除全部 */ clearAll: () => void; } export default function SearchData(props: IProps): JSX.Element; export {};