import { Field } from "./Field"; import { Map } from "./Map"; import { Path } from "./fields/Path"; import { Query } from "./maps/Query"; import { Callable } from "./Callable"; import { Auth } from "./maps/Auth"; export declare class Request extends Callable { constructor(); private static readonly request; static authId(): Field; static userId(): import(".").Index; static auth(): Auth; static data(): Map; static method(): Field<"list" | "get" | "create" | "update" | "delete">; static path(): Path; static query(): Query; /** * Time of the server when the request is received */ static time(): Field; } //# sourceMappingURL=Request.d.ts.map