import { ControllerConfig } from "../../../config/definitions/parts/controllerConfig"; import Controller from "../../../../api/Controller"; import Socket from '../../../../api/Socket'; export default class PanelAuthController extends Controller { static config: ControllerConfig; handle(socket: Socket, { username, password }: { username: any; password: any; }): Promise; }