import { SearchProps } from '@wix/design-system'; import React, { CSSProperties } from 'react'; import { FiltersMap } from '@wix/bex-core'; export interface CollectionSearchProps extends Partial { onSearchChange?: (value: string) => unknown; onSearchClick?: () => unknown; onSearchBlur?: (value: string) => unknown; visibility?: CSSProperties['visibility']; } export declare const CollectionSearch: (({ onSearchChange, onSearchClick, onSearchBlur, visibility, expandable, ...rest }: CollectionSearchProps) => React.JSX.Element) & { displayName: string; }; //# sourceMappingURL=CollectionSearch.d.ts.map