import type { ModuleInterface } from '@n8n/decorators'; export declare class DataTableModule implements ModuleInterface { init(): Promise; shutdown(): Promise; entities(): Promise<(typeof import("./data-table-column.entity").DataTableColumn | typeof import("./data-table.entity").DataTable)[]>; context(): Promise<{ dataTableProxyProvider: import("./data-table-proxy.service").DataTableProxyService; }>; }