declare function _exports({ dbFullName, tableName, tableInfoArray, dbSchema, clone, tableSchema, recordedDbEntry, }: {
    dbFullName: string;
    tableName: string;
    tableInfoArray: any[];
    dbSchema?: import("../../types").DSQL_DatabaseSchemaType[];
    tableSchema?: import("../../types").DSQL_TableSchemaType;
    recordedDbEntry?: any;
    clone?: boolean;
}): Promise<any>;
export = _exports;