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