import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, INodeTypeDescription, INodeTypeBaseDescription } from 'n8n-workflow'; export declare class SeaTableV1 implements INodeType { description: INodeTypeDescription; constructor(baseDescription: INodeTypeBaseDescription); methods: { loadOptions: { getTableNames(this: ILoadOptionsFunctions): Promise; getTableIds(this: ILoadOptionsFunctions): Promise; getTableUpdateAbleColumns(this: ILoadOptionsFunctions): Promise<{ name: string; value: string; }[]>; getAllSortableColumns(this: ILoadOptionsFunctions): Promise<{ name: string; value: string; }[]>; getViews(this: ILoadOptionsFunctions): Promise<{ name: string; value: string; }[]>; }; }; execute(this: IExecuteFunctions): Promise; } //# sourceMappingURL=SeaTableV1.node.d.ts.map