import { h } from 'preact'; import type { CurrentRefinementsConnectorParamsItem } from '../../connectors/current-refinements/connectCurrentRefinements'; import type { ComponentCSSClasses } from '../../types'; import type { CurrentRefinementsCSSClasses } from '../../widgets/current-refinements/current-refinements'; export type CurrentRefinementsComponentCSSClasses = ComponentCSSClasses; export type CurrentRefinementsProps = { items: CurrentRefinementsConnectorParamsItem[]; cssClasses: CurrentRefinementsComponentCSSClasses; canRefine: boolean; }; declare const CurrentRefinements: ({ items, cssClasses, canRefine, }: CurrentRefinementsProps) => h.JSX.Element; export default CurrentRefinements;