import type { Index } from "./indexes.js"; import type { PrimaryKey } from "./primary-keys.js"; import { SingleStoreTable } from "./table.js"; import { type UniqueConstraint } from "./unique-constraint.js"; export declare function getTableConfig(table: SingleStoreTable): { columns: import("./index.js").SingleStoreColumn, {}, {}>[]; indexes: Index[]; primaryKeys: PrimaryKey[]; uniqueConstraints: UniqueConstraint[]; name: string; schema: string | undefined; baseName: string; };