import { Cache, InstallOptions, Plugin } from '@tego/server'; import { UserStatusService } from './user-status'; export declare class PluginAuthServer extends Plugin { cache: Cache; userStatusService: UserStatusService; afterAdd(): void; beforeLoad(): Promise; load(): Promise; install(options?: InstallOptions): Promise; remove(): Promise; } export default PluginAuthServer;