import type { FC, HTMLAttributes } from 'react';
import { type TestableProps } from '../../utils/testId';
export interface SelectSearchInputProps extends Omit, 'children' | 'onChange' | 'color'>, TestableProps {
value: string;
onChange: (value: string) => void;
}
export declare const SelectSearchInput: FC;