import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodeListSearchResult, INodePropertyOptions, INodeType, INodeTypeBaseDescription, INodeTypeDescription } from 'n8n-workflow'; import { sendAndWaitWebhook } from '../../../utils/sendAndWait/utils'; export declare class SlackV2 implements INodeType { description: INodeTypeDescription; constructor(baseDescription: INodeTypeBaseDescription); methods: { listSearch: { getChannels(this: ILoadOptionsFunctions, filter?: string, paginationToken?: string): Promise; getUsers(this: ILoadOptionsFunctions, filter?: string): Promise; }; loadOptions: { getUsers(this: ILoadOptionsFunctions): Promise; getChannels(this: ILoadOptionsFunctions): Promise; getChannelsName(this: ILoadOptionsFunctions): Promise; getTeamFields(this: ILoadOptionsFunctions): Promise; }; }; webhook: typeof sendAndWaitWebhook; execute(this: IExecuteFunctions): Promise; } //# sourceMappingURL=SlackV2.node.d.ts.map