import React from 'react'; import { ActionType } from '@axelor/aos-mobile-ui'; interface SearchListViewProps { list: any[]; loading: boolean; moreLoading: boolean; isListEnd: boolean; sliceFunction: any; sliceFunctionData?: Object; onChangeSearchValue?: (item: any) => void; displaySearchValue?: (item: any) => string; searchPlaceholder?: string; searchNavigate?: boolean; scanKeySearch?: string; isHideableSearch?: boolean; fixedItems?: any; topFixedItems?: any; chipComponent?: any; expandableFilter?: boolean; headerChildren?: any; headerTopChildren?: any; renderListItem: (item: any) => any; actionList?: ActionType[]; verticalActions?: boolean; customSearchBarComponent?: React.JSX.Element; } declare const SearchListView: ({ list, loading, moreLoading, isListEnd, sliceFunction, sliceFunctionData, onChangeSearchValue, displaySearchValue, searchPlaceholder, searchNavigate, scanKeySearch, isHideableSearch, fixedItems, topFixedItems, chipComponent, expandableFilter, headerChildren, headerTopChildren, renderListItem, actionList, verticalActions, customSearchBarComponent, }: SearchListViewProps) => React.JSX.Element; export default SearchListView;