import { DSQL_DatabaseSchemaType, DSQL_TableSchemaType } from "../../../types"; type Params = { currentDbSchema: DSQL_DatabaseSchemaType; currentTableSchema: DSQL_TableSchemaType; currentTableSchemaIndex: number; userId: string | number; }; export default function ({ currentDbSchema, currentTableSchema, currentTableSchemaIndex, userId, }: Params): DSQL_DatabaseSchemaType; export {};