import type { ICredentialsDecrypted, ICredentialTestFunctions, IExecuteFunctions, INodeCredentialTestResult, INodeExecutionData, INodeType, INodeTypeBaseDescription, INodeTypeDescription } from 'n8n-workflow'; import { searchTables } from './GenericFunctions'; export declare class MySqlV1 implements INodeType { description: INodeTypeDescription; constructor(baseDescription: INodeTypeBaseDescription); methods: { credentialTest: { mysqlConnectionTest(this: ICredentialTestFunctions, credential: ICredentialsDecrypted): Promise; }; listSearch: { searchTables: typeof searchTables; }; }; execute(this: IExecuteFunctions): Promise; } //# sourceMappingURL=MySqlV1.node.d.ts.map