import type { CurrentRefinementsProps as CurrentRefinementsUiComponentProps } from '../ui/CurrentRefinements'; import type { UseCurrentRefinementsProps } from 'react-instantsearch-core'; type UiProps = Pick; export type CurrentRefinementsProps = Omit & UseCurrentRefinementsProps; export declare function CurrentRefinements({ includedAttributes, excludedAttributes, transformItems, ...props }: CurrentRefinementsProps): JSX.Element; export {};