import type { IExecuteFunctions, ICredentialsDecrypted, ICredentialTestFunctions, ILoadOptionsFunctions, INodeCredentialTestResult, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription } from 'n8n-workflow'; import { sendAndWaitWebhook } from '../../../utils/sendAndWait/utils'; export declare class GoogleChat implements INodeType { description: INodeTypeDescription; webhook: typeof sendAndWaitWebhook; methods: { loadOptions: { getSpaces(this: ILoadOptionsFunctions): Promise; }; credentialTest: { testGoogleTokenAuth(this: ICredentialTestFunctions, credential: ICredentialsDecrypted): Promise; }; }; execute(this: IExecuteFunctions): Promise; } //# sourceMappingURL=GoogleChat.node.d.ts.map