export declare enum TreeViewCommand {
    Check = "Check",
    Collapse = "Collapse",
    Exists = "Exists",
    Expand = "Expand",
    GetItemCount = "GetItemCount",
    GetSelected = "GetSelected",
    GetText = "GetText",
    IsChecked = "IsChecked",
    Select = "Select",
    Uncheck = "Uncheck"
}
export declare function ControlTreeView(windowTitle: string, windowText: string, controlId: string, command: TreeViewCommand, option1?: string, option2?: string, characterCount?: number): string;
