import { APIRoute } from 'astro';

/**
 * API route to check if the user is authenticated by verifying the access token.
 */
declare const GET: APIRoute;

export { GET };
