import React from "react"; import { InputProps } from "../Input"; export type SearchProps = Omit & { cancellable?: boolean; disabled?: boolean; onCancelPress?: () => void; }; export declare const Search: ({ cancellable, value, disabled, onCancelPress, onChange, ...restProps }: SearchProps) => React.JSX.Element;