export declare enum ListViewCommand {
    DeSelect = "DeSelect",
    FindItem = "FindItem",
    GetItemCount = "GetItemCount",
    GetSelected = "GetSelected",
    GetSelectedCount = "GetSelectedCount",
    GetSubItemCount = "GetSubItemCount",
    GetText = "GetText",
    IsSelected = "IsSelected",
    Select = "Select",
    SelectAll = "SelectAll",
    SelectClear = "SelectClear",
    SelectInvert = "SelectInvert",
    ViewChange = "ViewChange"
}
export declare function ControlListView(windowTitle: string, windowText: string, controlId: string, command: ListViewCommand, option1?: string, option2?: string, characters?: number): string;
