import { Express } from 'express';
import { Config, UnauthorizedConfig } from '../../types';
export declare function register({ config, app }: {
    config: Config | UnauthorizedConfig;
    app: Express;
}): void;
