import { Schema, FormatDataAfterQueryOptions } from '../types'; interface IFormatDataAfterQueryMeta { tableName: string; appName?: string; schema: Schema; } /** * Remove unnecessary data after fetch entity data by query * @param {string} tableName - The name of the table from the 8base API. * @param {Object} data - The entity data for format. * @param {Schema} schema - The schema of the used tables from the 8base API. * @param {FormatDataAfterQueryOptions} options */ declare const formatDataAfterQuery: (data: { [key: string]: any; }, { tableName, appName, schema }: IFormatDataAfterQueryMeta, options?: FormatDataAfterQueryOptions) => {}; export { formatDataAfterQuery }; //# sourceMappingURL=formatDataAfterQuery.d.ts.map