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