import type { FastifyReply } from "fastify"; import type { ExtendedPG } from "../../../types/core.js"; export default function dataAPI({ pg, params, table, id, headers, query, user, contextQuery, searchColumn, sufix, filterList, actions: actionsParam, accessQuery: accessQueryParam, columns: columnsParam, isExport, called: isCalled, }: { pg?: ExtendedPG; params?: { id?: string; query?: string; table: string; }; table?: string; id?: string; headers?: Record; query?: Record; user?: Record; contextQuery?: string; searchColumn?: string; sufix?: boolean; filterList?: any[]; actions?: string[]; accessQuery?: string; columns?: string[]; isExport?: boolean; called?: boolean; }, _?: FastifyReply, called1?: any): Promise; //# sourceMappingURL=getData.d.ts.map