import { PageProps } from '@wix/design-system'; import React, { ReactNode } from 'react'; import { CollectionState, FiltersMap } from '@wix/bex-core'; export interface CollectionPageProps extends PageProps { /** * A collection state instance created with [useCollection](./?path=/story/common-hooks--usecollection) * @external */ state: CollectionState; children?: ReactNode; /** * Hide total items count * @external */ hideTotal?: boolean; } /** * @deprecated Use [CollectionPage](./?path=%2Fstory%2Fbase-components-pages-collection-page--collectionpage) from * `@wix/patterns/page` */ export declare function CollectionPage({ children, state, hideTotal, ...rest }: CollectionPageProps): React.JSX.Element; //# sourceMappingURL=CollectionPage.d.ts.map