import type { StatsProps as StatsUiComponentProps } from '../ui/Stats'; import type { UseStatsProps } from 'react-instantsearch-hooks'; type UiProps = Pick; export type StatsProps = Omit & UseStatsProps & { translations?: Partial & { /** * @deprecated Use `rootElementText` instead. */ stats?: Partial['rootElementText']; }; }; export declare function Stats({ translations, ...props }: StatsProps): JSX.Element; export {};