import { Connection } from "./db/connection"; import { IsResult } from "./db"; import { DbResult } from "./types/db"; import { Config } from "./types/config"; /** * Listen to connections on whatever port specified * @param port Port to listen for connections on * @param hostname Host to listen for connections on */ export declare function start(log: Config["log"]): void; export declare const DbConnection: Connection>;