import type { ISbComponentType } from 'storyblok-js-client'; export interface ISbTableCell extends ISbComponentType { component: '_table_col' | '_table_head'; value: string; } export interface ISbTableRow extends ISbComponentType { component: '_table_row'; body: Array; } export interface ISbTable extends ISbComponentType { fieldtype: 'table'; tbody: Array; thead: Array; }