import { DbContextsArray } from "./runQuery"; type Param = { dbContext?: (typeof DbContextsArray)[number]; dbFullName: string; tableName: string; tableSchema?: import("../../../types").DSQL_TableSchemaType; identifierColumnName: string; identifierValue: string | number; forceLocal?: boolean; }; /** * # Delete DB Entry Function * @description */ export default function deleteDbEntry({ dbContext, dbFullName, tableName, identifierColumnName, identifierValue, forceLocal, }: Param): Promise; export {};