type Param = {
    userId?: number | string | null;
    targetDatabase?: string;
    dbSchemaData?: import("../types").DSQL_DatabaseSchemaType[];
};
/**
 * # Create database from Schema Function
 * @requires DSQL_DB_CONN - Gobal Variable for Datasquirel Database
 */
export default function createDbFromSchema({ userId, targetDatabase, dbSchemaData, }: Param): Promise<void>;
export {};