import { DSQL_DATASQUIREL_USER_DATABASES } from "../../types/dsql"; type Params = { userId: number | string; database: DSQL_DATASQUIREL_USER_DATABASES; dbId?: string | number; }; export default function createDbSchemaFromDb({ userId, database, dbId, }: Params): Promise; export {};