import { Client } from "@cocalc/database/pool";
import type { TableSchema } from "./types";
export declare function primaryKeys(table: string | TableSchema): string[];
export declare function primaryKey(table: string | TableSchema): string;
export declare function createTable(db: Client, schema: TableSchema): Promise<void>;
