import { Request, Response, NextFunction } from 'express';
import { Config, UnauthorizedConfig } from '../types';
export declare function getAboutPageOptions(config: Config | UnauthorizedConfig): Promise<{
    name: string;
    logo: string;
    manifest: string;
    storeLink: string;
    showDebugLink: boolean;
}>;
export default function handle(config: Config | UnauthorizedConfig): (req: Request, res: Response, next: NextFunction) => Promise<Response<any, Record<string, any>> | undefined>;
