import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription, ILoadOptionsFunctions, INodeListSearchResult } from 'n8n-workflow'; export declare class Databricks implements INodeType { description: INodeTypeDescription; methods: { listSearch: { getWarehouses(this: ILoadOptionsFunctions, filter?: string): Promise; getEndpoints(this: ILoadOptionsFunctions, filter?: string): Promise; getCatalogs(this: ILoadOptionsFunctions, filter?: string): Promise; getSchemas(this: ILoadOptionsFunctions, filter?: string): Promise; getVolumes(this: ILoadOptionsFunctions, filter?: string): Promise; getTables(this: ILoadOptionsFunctions, filter?: string): Promise; getFunctions(this: ILoadOptionsFunctions, filter?: string): Promise; }; }; execute(this: IExecuteFunctions): Promise; }