import React from 'react'; import { Cursor } from '@staticcms/core/lib/util'; import type { CollectionWithDefaults, Entry } from '@staticcms/core'; import type { ViewStyle } from '@staticcms/core/constants/views'; import type { ConnectedProps } from 'react-redux'; export declare function filterNestedEntries(path: string, collectionFolder: string, entries: Entry[]): Entry[]; interface EntriesCollectionOwnProps { collection: CollectionWithDefaults; viewStyle: ViewStyle; filterTerm: string; } declare const connector: import("react-redux").InferableComponentEnhancerWithProps<{ page: number | undefined; filterTerm: string; entriesLoaded: boolean; isFetching: boolean; viewStyle: ViewStyle; cursor: Cursor; collection: CollectionWithDefaults; } & {}, EntriesCollectionOwnProps>; export type EntriesCollectionProps = ConnectedProps; declare const _default: import("react-redux").ConnectedComponent, { collection: CollectionWithDefaults; viewStyle: ViewStyle; filterTerm: string; context?: React.Context> | undefined; store?: import("redux").Store | undefined; }>; export default _default;