import { FC } from "react"; import { ViewProps } from "../View"; import { ResourceListSearchProps } from "./ResourceListSearch"; import { FilterGroupProps } from "../Filter/FilterGroup"; export interface ResourceListProps extends ViewProps { allowMultiSelect?: boolean; fetchResources: ({ searchTerm, sortSelection, filterSelection }: { searchTerm: any; sortSelection: any; filterSelection: any; }) => void; } type ResourceListFC = FC & { Search: FC; Filters: FC; BulkActions: FC; Sort: FC; Content: FC; Item: FC; }; declare const ResourceList: ResourceListFC; export default ResourceList;