import { table_row_node } from "./table_row_node"; export interface table_node { type: "table"; attrs?: { isNumberColumnEnabled?: boolean; layout?: "wide" | "full-width" | "default"; }; content: Array; } //# sourceMappingURL=table_node.d.ts.map