import type { APIResponseObject, ServerQueryParam } from "../../types"; type Params = { query?: ServerQueryParam; table: string; count?: boolean; targetId?: number | string; }; export default function DbSelect({ table, query, count, targetId }: Params): Promise>; export {};