import { Response, Router } from 'express';
import { TwitchCommandClient } from '../../client/TwitchCommandClient';
export declare abstract class BaseRoute {
    client: TwitchCommandClient;
    router: Router;
    constructor(client: TwitchCommandClient);
    response(res: Response, status: number, response: any): Response<any, Record<string, any>>;
}
