import { type FC } from 'react'; import '@alifd/next/lib/button/style'; import '@alifd/next/lib/form/style'; import './index.scss'; interface IProps { customClass?: string; customStyle?: object; search?: { name?: string; isShowIcon?: boolean; customStyle?: object; customClass?: string; isTextBtn?: boolean; }; reset?: { name?: string; isShowIcon?: boolean; customStyle?: object; customClass?: string; isTextBtn?: boolean; }; isFormType?: boolean; onSearch?: (v: any) => void; onReset?: () => void; } declare const SearchResetGroup: FC; export default SearchResetGroup;