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