import type { NextRequest } from 'next/server';
import { type Metric } from '../types/metric';
export declare const handleMetric: (name: string, metric: Metric) => (req: NextRequest) => Promise<Response>;
