import { DelayedTextInput } from '@gravity-ui/components'; import type { SearchCounter } from "../types.js"; type DelayedTextInputProps = React.ComponentProps; export type SearchTextInputProps = DelayedTextInputProps & { counter?: SearchCounter; onFindNext: () => void; onFindPrevious: () => void; }; export declare const SearchTextInput: React.FC; export {};