import { Component, Request, Http } from '@pjblog/http'; import { ClassicCache } from '@pjblog/cache'; import type { EntityManager } from 'typeorm'; export declare class LogoutController extends Component { readonly manager: EntityManager; readonly configs: Configs; readonly http: Http; readonly classicCache: ClassicCache; constructor(req: Request); clearCache(): Promise; clearCookie(): Promise; } import { Configs } from '../../configs/service';