declare enum HttpMethods { HEAD = "HEAD", GET = "GET", POST = "POST", PUT = "PUT", PATCH = "PATCH", OPTIONS = "OPTIONS", DELETE = "DELETE" } export type Handler = { method: HttpMethods; input: string; resolver: () => Response; }; export declare const handlers: Handler[]; export {};