export declare type Method = 'get' | 'post' | 'put' | 'delete' | 'patch'; export declare type AuxMethod = 'options'; export declare type MethodsDefinition = { methods: M[]; } | { method: M; };