import type { String2MB } from './String2MB'; export declare type History = { title?: string; operation?: History.operation; /** * UNIX timestamp when auditable event occurred */ at?: number; user?: string; /** * the request URI */ requestURI?: string; requestBody?: String2MB; responseCode?: number; }; export declare namespace History { enum operation { PATCH = "PATCH", POST = "POST", PUT = "PUT", DELETE = "DELETE" } }