import React from 'react';
import './Search.scss';
interface SearchProps {
    ariaLabel?: undefined | string;
    handleSearch: (e: string) => void;
    placeholder: string;
}
export declare const Search: React.FC<SearchProps>;
export {};
