import { APICrudPostParams } from "./post"; type Params = Omit, "update"> & { targetID: string | number; apiKey?: string; }; export default function apiCrudPUT({ dbName, tableName, body, targetID, apiKey }: Params): Promise; export {};