import React from 'react'; import { TableProps } from 'antd'; import type { ComprehensiveSearchProps } from '../../pro/comprehensiveSearch/types'; import type { ClientData } from './types'; import './index.less'; interface ClientSearchProps extends Omit { onRowClick?: (record: ClientData, index: number) => void; onAddClient?: (record: ClientData, isChecked: boolean) => void; resultProps?: TableProps; hasMore?: boolean; onLoadMore?: () => void; state?: any; resultLoading?: boolean; } export declare type ClientSearchRef = { resetScrollPosition: () => void; }; declare const ClientSearch: React.ForwardRefExoticComponent>; export default ClientSearch;