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