import React from 'react';
import { DataTrackingTypeHTMLElement } from "../../../types";
type TSearchProps = {
    placeholder?: string;
    className?: string;
    formatValue?: (value: string) => string;
} & DataTrackingTypeHTMLElement;
export declare function Search({ className, placeholder, formatValue, ...restProps }: TSearchProps): React.JSX.Element;
export {};
