import { NetworkInterface } from 'faces/network'; export declare class NetworkDB { private db; private started; constructor(dbPath: string); init(): Promise; insert(obj: NetworkInterface): Promise; findOne(): Promise; increment(qty?: number): Promise; }