import React from 'react'; import type { StatsProps as StatsUiComponentProps } from '../ui/Stats'; import type { UseStatsProps } from 'react-instantsearch-core'; type UiProps = Pick; export type StatsProps = Omit & UseStatsProps & { translations?: Partial; }; export declare function Stats({ translations, ...props }: StatsProps): React.JSX.Element; export {};