type Param = { dbContext?: string; paradigm?: "Read Only" | "Full Access"; dbFullName: string; tableName: string; tableSchema?: import("../../../types").DSQL_TableSchemaType; identifierColumnName: string; identifierValue: string | number; }; /** * # Delete DB Entry Function * @description */ export default function deleteDbEntry({ dbContext, paradigm, dbFullName, tableName, identifierColumnName, identifierValue, }: Param): Promise; export {};