export declare enum METHODS { get = "get", post = "post", patch = "patch", put = "put", delete = "delete", head = "head" } export declare type MethodActions = keyof typeof METHODS;