import { Item } from "@rxweb/dom"; import { TemplateConfig } from "../.."; import { TableTemplateConfig } from "../../interface/config/table-template-config"; export declare function table(templateConfig: TableTemplateConfig, source: Item[]): { headerTemplate: {}; bodyTemplate: { [x: string]: { id: string; class: any[]; sourceItems: Item[]; rowItem: boolean; childrens: { [x: string]: { class: any[]; id: string; childrens: TemplateConfig[]; }; }[]; }; }; headerColumns: any; };