import type { ApiServer } from '../ApiServer'; export interface AuthCallbackHandlerOptions { staticDir: string; } /** * Serve the browser-only callback entry and its immutable assets. * * This route deliberately contains no OIDC, Account, or token handling. The * callback JavaScript loaded from the entry performs protocol completion in * the browser with Inrupt's existing session adapter. */ export declare function registerAuthCallbackRoutes(server: ApiServer, options: AuthCallbackHandlerOptions): void;