import type { INodeType, INodeTypeDescription } from 'n8n-workflow'; export declare class Firecrawl implements INodeType { description: INodeTypeDescription; methods: { loadOptions?: { [key: string]: (this: import("n8n-workflow").ILoadOptionsFunctions) => Promise; } | undefined; listSearch?: { [key: string]: (this: import("n8n-workflow").ILoadOptionsFunctions, filter?: string | undefined, paginationToken?: string | undefined) => Promise; } | undefined; credentialTest?: { [functionName: string]: import("n8n-workflow").ICredentialTestFunction; } | undefined; resourceMapping?: { [functionName: string]: (this: import("n8n-workflow").ILoadOptionsFunctions) => Promise; } | undefined; actionHandler?: { [functionName: string]: (this: import("n8n-workflow").ILoadOptionsFunctions, payload: string | import("n8n-workflow").IDataObject | undefined) => Promise; } | undefined; } | undefined; }