import { Handle } from "./types"; export default class API { private httpServer; private routes; constructor(); listen(port: number, host?: string): void; register(route: string, handle: Handle): void; methods(): string[]; }