import type { ICredentialDataDecryptedObject } from 'n8n-workflow'; import type { SearchOptions, SearchResponse } from '../config/types'; import { BaseSearchProvider } from './base'; export declare class SerpApiProvider extends BaseSearchProvider { name: string; search(query: string, options: SearchOptions, credentials: ICredentialDataDecryptedObject): Promise; }