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