export declare class Request { method: string; path: string; /** * Construct the basis of request * @param {string} method - POST/PUT/PATCH * @param {string} path */ constructor(method: 'POST' | 'PATCH' | 'PUT', path: string); getTimestamp(): number; getPayload(): object; } //# sourceMappingURL=Request.d.ts.map