import { BaseConnection, DeviceCredentials, CommandResult } from '../base-connection';
export declare class CiscoConnection extends BaseConnection {
    private enablePassword;
    private inEnableMode;
    private inConfigMode;
    constructor(credentials: DeviceCredentials & {
        enablePassword?: string;
    });
    protected sessionPreparation(): Promise<void>;
    private createCiscoShellChannel;
    protected setTerminalWidth(): Promise<void>;
    protected disablePaging(): Promise<void>;
    protected setBasePrompt(): Promise<void>;
    private checkAndEnterEnableMode;
    private enterEnableMode;
    protected enterConfigMode(): Promise<void>;
    protected exitConfigMode(): Promise<void>;
    sendCommand(command: string): Promise<CommandResult>;
    sendConfig(configCommands: string[]): Promise<CommandResult>;
    getCurrentConfig(): Promise<CommandResult>;
    saveConfig(): Promise<CommandResult>;
    rebootDevice(): Promise<CommandResult>;
    protected sanitizeOutput(output: string, command: string): string;
    isInEnableMode(): boolean;
    isInConfigMode(): boolean;
}
