import { NextApiRequest, NextApiResponse } from 'next';
export declare type HandlerFunction = {
    (req: NextApiRequest, res: NextApiResponse, proxy?: unknown): Promise<unknown>;
    $methods?: string[];
    $statusCode?: number;
};
