/**
 * Table type. Tables can be abstract, closure, junction, embedded, etc.
 */
export declare type TableType = "regular" | "abstract" | "junction" | "closure" | "closure-junction" | "embeddable" | "single-table-child" | "class-table-child";
