import React from 'react'; import type { WithAsProps, HTMLPropsWithoutChange } from '../internals/types'; export interface InputSearchProps extends WithAsProps, HTMLPropsWithoutChange { readOnly?: boolean; value?: string; inputStyle?: React.CSSProperties; inputRef?: React.Ref; onChange?: (value: string, event: React.ChangeEvent) => void; } declare const InputSearch: import("../internals/types").InternalRefForwardingComponent<"input", InputSearchProps, never> & Record; export default InputSearch;