export declare enum Command {
    IsVisible = "IsVisible",
    IsEnabled = "IsEnabled",
    ShowDropDown = "ShowDropDown",
    HideDropDown = "HideDropDown",
    AddString = "AddString",
    DelString = "DelString",
    FindString = "FindString",
    GetCount = "GetCount",
    SetCurrentSelection = "SetCurrentSelection",
    SelectString = "SelectString",
    IsChecked = "IsChecked",
    Check = "Check",
    UnCheck = "UnCheck",
    GetCurrentLine = "GetCurrentLine",
    GetCurrentCol = "GetCurrentCol",
    GetCurrentSelection = "GetCurrentSelection",
    GetLineCount = "GetLineCount",
    GetLine = "GetLine",
    GetSelected = "GetSelected",
    EditPaste = "EditPaste",
    CurrentTab = "CurrentTab",
    TabRight = "TabRight",
    TabLeft = "TabLeft",
    SendCommandID = "SendCommandID"
}
export declare function ControlCommand(windowTitle: string, windowText: string, controlId: string, command: Command, option?: string, characterCount?: number): string;
