import { InputHTMLAttributes } from "react";
import { OverrideClassName } from "@kaizen/component-base";
export interface InputSearchProps extends OverrideClassName, "defaultValue">> {
id: string;
reversed?: boolean;
loading?: boolean;
secondary?: boolean;
onClear?: () => void;
}
/**
* @deprecated Please use the same component from `@kaizen/components`
*/
export declare const InputSearch: {
(props: InputSearchProps): JSX.Element;
displayName: string;
};