import { DSQL_TableSchemaType } from "../../types"; type Param = { dbFullName: string; tableName: string; tableInfoArray: any[]; tableSchema?: DSQL_TableSchemaType; recordedDbEntry?: any; }; /** * # Create Table Functions */ export default function createTable({ dbFullName, tableName, tableInfoArray, tableSchema, recordedDbEntry, }: Param): Promise; export {};