import { DSQL_TableSchemaType } from "../../../types"; type Param = { value?: any; tableSchema?: DSQL_TableSchemaType; encryptionKey?: string; encryptionSalt?: string; dataKey: string; }; /** * # Update DB Function * @description */ export default function grabParsedValue({ value, tableSchema, encryptionKey, encryptionSalt, dataKey, }: Param): any; export {};