import { RefObject } from 'react';
import { InternalInputProps } from './internal';
export declare const useSearchProps: (type: string, disabled: boolean | undefined, readOnly: boolean | undefined, value: string, inputRef: RefObject<HTMLInputElement>, onChange: (value: string) => void) => Partial<InternalInputProps>;
