interface OverridableRequest { method: string; headers: Record; body?: any; query?: any; [key: string]: any; } type NextFunction = (err?: any) => void; export interface CrudMethodOverrideOptions { headers?: string[]; bodyKeys?: string[]; allowedMethods?: string[]; } export declare function crudMethodOverride(options?: CrudMethodOverrideOptions): (req: OverridableRequest, _res: unknown, next: NextFunction) => void; export {}; //# sourceMappingURL=method-override.middleware.d.ts.map