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