export declare function useSearchHistory(key?: string, limit?: number, enabled?: boolean): {
    items: string[];
    push: (val: string) => void;
    remove: (val: string) => void;
    clear: () => void;
};
