///
import { InputSearchProps } from "../Primitives";
export interface SearchFieldProps extends Omit {
id?: string;
labelText: string;
disabled?: boolean;
reversed?: boolean;
secondary?: boolean;
}
/**
* @deprecated Please use the same component from `@kaizen/components`
*/
export declare const SearchField: {
({ id: propsId, labelText, disabled, reversed, secondary, classNameOverride, ...restProps }: SearchFieldProps): JSX.Element;
displayName: string;
};