import { BaseConnection, DeviceCredentials, CommandResult } from '../base-connection';
export declare class UbiquitiEdgeRouterConnection extends BaseConnection {
    protected inConfigMode: boolean;
    constructor(credentials: DeviceCredentials);
    sessionPreparation(): Promise<void>;
    protected setEdgeRouterTerminalWidth(): Promise<void>;
    protected disableEdgeRouterPaging(): Promise<void>;
    protected enterConfigMode(): Promise<void>;
    protected exitConfigMode(): Promise<void>;
    sendConfig(configCommands: string[]): Promise<CommandResult>;
    saveConfig(): Promise<CommandResult>;
    getCurrentConfig(): Promise<CommandResult>;
    showSystem(): Promise<CommandResult>;
    showInterfaces(): Promise<CommandResult>;
}
