export declare class InfluxLogin {
    readonly host: string;
    readonly port: number;
    readonly username: string;
    readonly password: string;
    constructor(host?: string, port?: number, username?: string, password?: string);
}
