import { APIRoute } from 'astro';

/**
 * Handles the OAuth callback, exchanges the code for an access token, and redirects the user.
 */
declare const GET: APIRoute;

export { GET };
