import { authenticate, controllerResponse } from "../../types";
/**
 * Authenticate a user based on provided credentials.
 * @param body Object containing authentication details.
 * @returns Controller response indicating success or failure and relevant message.
 */
export declare function authenticate(body: authenticate): Promise<controllerResponse>;
