import { Widget } from "../widget"; import { ColumnDataSource } from "../../sources/column_data_source"; import { CDSView } from "../../sources/cds_view"; import type * as p from "../../../core/properties"; export declare namespace TableWidget { type Attrs = p.AttrsOf; type Props = Widget.Props & { source: p.Property; view: p.Property; }; } export interface TableWidget extends TableWidget.Attrs { } export declare class TableWidget extends Widget { properties: TableWidget.Props; constructor(attrs?: Partial); } //# sourceMappingURL=table_widget.d.ts.map