export declare class ExternalConnection {
    tablePath: string;
    localip: string;
    port: string;
    /**
     * NOT SUPPORTED YET
     *
     * ExternalConnection adapter for the database app
     * @param options
     * @param path a path to the folder, where to store data
     * @param ip
     * @param port
     */
    constructor(options: {
        path: string;
        ip: string;
        port: number | string;
    });
}
