export declare const useRecentSearches: () => {
    items: string[];
    addSearchHistoryItem: (value: string) => void;
    removeSearchHistoryItem: (value: string) => void;
};
