import type { IExecuteFunctions, ICredentialsDecrypted, ICredentialTestFunctions, ILoadOptionsFunctions, INodeCredentialTestResult, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription } from 'n8n-workflow'; export type FieldsUiValues = Array<{ fieldId: string; fieldValue: string; }>; export declare class Supabase implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getTables(this: ILoadOptionsFunctions): Promise; getTableColumns(this: ILoadOptionsFunctions): Promise; }; credentialTest: { supabaseApiCredentialTest(this: ICredentialTestFunctions, credential: ICredentialsDecrypted): Promise; }; }; execute(this: IExecuteFunctions): Promise; } //# sourceMappingURL=Supabase.node.d.ts.map