import { AuthenticatedUser } from "./types";
declare const authenticateUser: (userId: string, apiKey: string) => Promise<AuthenticatedUser>;
export { authenticateUser };
