1 | import React from 'react';
|
2 | import type { CurrentRefinementsProps as CurrentRefinementsUiComponentProps } from '../ui/CurrentRefinements';
|
3 | import type { UseCurrentRefinementsProps } from 'react-instantsearch-core';
|
4 | type UiProps = Pick<CurrentRefinementsUiComponentProps, 'items' | 'hasRefinements'>;
|
5 | export type CurrentRefinementsProps = Omit<CurrentRefinementsUiComponentProps, keyof UiProps> & UseCurrentRefinementsProps;
|
6 | export declare function CurrentRefinements({ includedAttributes, excludedAttributes, transformItems, ...props }: CurrentRefinementsProps): React.JSX.Element;
|
7 | export {};
|