import { type IExecuteFunctions, type INodeType, type INodeTypeDescription } from 'n8n-workflow'; import { listSearch, loadOptions, resourceMapping } from './v2/methods'; export declare class UnitalkSheets implements INodeType { description: INodeTypeDescription; methods: { loadOptions: typeof loadOptions; listSearch: typeof listSearch; resourceMapping: typeof resourceMapping; }; execute(this: IExecuteFunctions): Promise; }