import type { APIResponseObject } from "../../types"; type Params = { table: string; data: T[]; }; export default function DbInsert({ table, data }: Params): Promise; export {};