import { CardProps } from '@wix/design-system'; import React, { ReactElement, ReactNode } from 'react'; import { FiltersMap } from '@wix/bex-core'; import { ToolbarCollectionState } from '../../state'; import type { TagsElement } from '../Tags'; export interface CollectionCardProps extends CardProps { state: ToolbarCollectionState; children?: ReactNode | ReactNode[]; errorState?: false | ((err: unknown, params: { isOnline: boolean; retry: () => void; }) => ReactElement); tags?: TagsElement; } declare function _CollectionCard({ state, errorState, children, tags, ...rest }: CollectionCardProps): React.JSX.Element; export declare const CollectionCard: typeof _CollectionCard & { displayName: string; }; export {}; //# sourceMappingURL=CollectionCard.d.ts.map