import { NextApiHandler, NextApiResponse } from 'next/types';
export declare const createApiHandler: (handler: NextApiHandler | Record<string, any>) => NextApiHandler;
export declare const errorResponse: (res: NextApiResponse, status: number, message: string) => void;
export declare const successResponse: (res: NextApiResponse, data: any) => void;
