import { APIResponseObject } from "../../types"; export type APICrudPostParams = { dbName: string; tableName: string; body: T; update?: boolean; }; export default function apiCrudPOST({ dbName, tableName, body, update, }: APICrudPostParams): Promise;