import type { ClearRefinementsProps as ClearRefinementsUiComponentProps } from '../ui/ClearRefinements'; import type { UseClearRefinementsProps } from 'react-instantsearch-core'; type UiProps = Pick; export type ClearRefinementsProps = Omit & UseClearRefinementsProps & { translations?: Partial; }; export declare function ClearRefinements({ includedAttributes, excludedAttributes, transformItems, translations, ...props }: ClearRefinementsProps): JSX.Element; export {};