import { type DOMProps } from '@gravity-ui/uikit'; import type { SearchCounter } from "../types.js"; export type SearchCounterProps = DOMProps & { counter: SearchCounter; }; export declare const SearchCounterText: React.FC;