import React from 'react'; import { type SearchFormProps } from './index'; import { type GoodsSearchFormType } from './registry'; import type { SearchFormOptionLoader } from './loaders'; import type { SearchFormData } from './index'; export type GoodsSearchFormProps = Omit & { type: GoodsSearchFormType; searchFormData?: SearchFormData; loadOptions?: SearchFormOptionLoader[]; }; declare const GoodsSearchForm: ({ type, searchFormData: customSearchFormData, loadOptions, ...searchFormProps }: GoodsSearchFormProps) => React.JSX.Element; export default GoodsSearchForm;