import { Transport } from 'acebase-core'; import { RouteInitEnvironment, RouteRequest } from '../shared/env'; export type RequestQuery = { include?: string; exclude?: string; child_objects?: 'true' | 'false'; }; export type RequestBody = null; export type ResponseBody = Transport.SerializedValue & { exists: boolean; }; export type Request = RouteRequest; export declare const addRoute: (env: RouteInitEnvironment) => void; export default addRoute; //# sourceMappingURL=data-get.d.ts.map