import { PropertiesType } from "./../types/objects/elements/PropertiesType";
import { Types } from "./../types/enums/Types";
import { Modify } from "./Modify";
import { Class } from "./Class";
declare class Achievement extends Class {
    static emptyProgressBarIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static fullProgressBarIconBase<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class AddExternalServer extends Class {
    static playButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static playDisabledButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static removeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveDisabledButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditGroup<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "name_label" | "edit_box">;
    static textEditGroup_nameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditGroup_editBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "name_edit" | "ip_edit" | "port_edit">;
    static contentPanel_nameEdit<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPanel_ipEdit<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPanel_portEdit<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "play" | "remove" | "title" | "common_panel" | "main_content" | "play_disabled" | "save" | "save_disabled">;
    static mainPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_mainContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_play<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_playDisabled<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_remove<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_save<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_saveDisabled<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_a">;
    static gamepadHelpers_gamepadHelperA<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addExternalServerScreenNew<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static addExternalServerScreenEdit<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static addExternalServerScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static addExternalServerScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "root_panel">;
    static addExternalServerScreenContent_rootPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel" | "gamepad_helpers">;
    static addExternalServerScreenContent_rootPanel_gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addExternalServerScreenContent_rootPanel_mainPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class AdhocInprogress extends Class {
    static titleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title" | "common_panel" | "main_content" | "progress_loading_bars">;
    static mainPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_mainContent<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static adhocInprogressScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static adhocInprogressScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "root_panel">;
    static adhocInprogressScreenContent_rootPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel">;
    static adhocInprogressScreenContent_rootPanel_mainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Adhoc extends Class {
    static onlineButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static localButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title_text">;
    static contentPanel_titleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "title" | "online" | "local" | "common_panel" | "main_content">;
    static mainPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_mainContent<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_online<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_local<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_a">;
    static gamepadHelpers_gamepadHelperA<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static adhocScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static adhocScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "root_panel">;
    static adhocScreenContent_rootPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel" | "gamepad_helpers">;
    static adhocScreenContent_rootPanel_gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static adhocScreenContent_rootPanel_mainPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Anvil extends Class {
    static genericLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "anvil_icon">;
    static anvilIconPanel_anvilIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditControl<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconAndTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "anvil_icon_panel" | "anvil_title_and_text_panel">;
    static iconAndTextPanel_anvilIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconAndTextPanel_anvilTitleAndTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label">;
    static titlePanel_titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text_edit_control">;
    static textEditPanel_textEditControl<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilTitleAndTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_panel" | "text_edit_panel">;
    static anvilTitleAndTextPanel_titlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilTitleAndTextPanel_textEditPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static plusSignIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static crossOutIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilOutputSlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "container_item">;
    static anvilItemSlot_containerItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "input_item_slot" | "plus" | "material_item_slot" | "yields" | "result_item_slot">;
    static recipeGrid_inputItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeGrid_plus<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "plus_sign_icon">;
    static recipeGrid_plus_plusSignIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeGrid_materialItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeGrid_yields<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cross_out_icon" | "arrow_icon">;
    static recipeGrid_yields_arrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeGrid_yields_crossOutIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeGrid_resultItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static costLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, "gray">;
    static costLabel_gray<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "recipe_grid" | "cost_label_0" | "cost_label_1">;
    static recipePanel_recipeGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipePanel_costLabel0<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipePanel_costLabel1<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon_and_text_panel" | "recipe_panel">;
    static topHalfPanel_iconAndTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfPanel_recipePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "root_panel" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory">;
    static anvilPanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilPanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilPanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilPanel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_cursor" | "common_panel" | "anvil_screen_inventory" | "inventory_selected_icon_button">;
    static anvilPanel_rootPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilPanel_rootPanel_anvilScreenInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top_half_panel" | "inventory_panel_bottom_half_with_label" | "hotbar_grid" | "inventory_take_progress_icon_button">;
    static anvilPanel_rootPanel_anvilScreenInventory_topHalfPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilPanel_rootPanel_anvilScreenInventory_inventoryPanelBottomHalfWithLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilPanel_rootPanel_anvilScreenInventory_hotbarGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilPanel_rootPanel_anvilScreenInventory_inventoryTakeProgressIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilPanel_rootPanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilPanel_rootPanel_gamepadCursor<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilPanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class AnvilPocket extends Class {
    static genericLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static backgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static costLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, "gray">;
    static costLabel_gray<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditControl<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilTitleAndTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label" | "text_edit_control">;
    static anvilTitleAndTextPanel_titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilTitleAndTextPanel_textEditControl<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "input_slot" | "material_slot" | "result_slot" | "plus_sign" | "arrow">;
    static slotsPanel_inputSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel_materialSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel_resultSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel_plusSign<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel_arrow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "cross_out">;
    static slotsPanel_arrow_crossOut<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilContentsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "anvil_title_and_text_panel" | "slots_panel" | "red_cost" | "green_cost">;
    static anvilContentsPanel_redCost<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilContentsPanel_greenCost<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilContentsPanel_slotsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilContentsPanel_anvilTitleAndTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static inventoryContent_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryAndAnvilPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_half_screen" | "anvil_half_screen">;
    static inventoryAndAnvilPanel_inventoryHalfScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_content">;
    static inventoryAndAnvilPanel_inventoryHalfScreen_inventoryContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryAndAnvilPanel_anvilHalfScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "anvil_contents_panel">;
    static inventoryAndAnvilPanel_anvilHalfScreen_anvilContentsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "panel" | "header_background" | "legacy_pocket_close_button">;
    static header_headerBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static header_legacyPocketCloseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static header_panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label">;
    static header_panel_titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerAndContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "header" | "inventory_and_anvil_panel">;
    static headerAndContentStackPanel_header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerAndContentStackPanel_inventoryAndAnvilPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "root_panel" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory" | "inventory_selected_icon_button" | "header_and_content_stack_panel" | "bg" | "hold_icon">;
    static anvilPanel_bg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilPanel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilPanel_headerAndContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilPanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilPanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilPanel_holdIcon<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilPanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilPanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilPanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class AuthenticationModals extends Class {
    static modalDialogLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalDialogContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "body_text" | "button_wrapper">;
    static modalDialogContent_bodyText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalDialogContent_buttonWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "buttons">;
    static modalDialogContent_buttonWrapper_buttons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left" | "padding" | "right">;
    static modalDialogContent_buttonWrapper_buttons_left<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalDialogContent_buttonWrapper_buttons_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalDialogContent_buttonWrapper_buttons_right<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalDialogFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "title" | "close" | "black_tint_image">;
    static modalDialogFrame_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalDialogFrame_close<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalDialogFrame_blackTintImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "content">;
    static modalDialogFrame_blackTintImage_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static adModalDialog<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Authentication extends Class {
    static nothing<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ttsControl<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static splitButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "buttons">;
    static splitButtonPanel_buttons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "a" | "b" | "paddding">;
    static splitButtonPanel_buttons_a<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static splitButtonPanel_buttons_paddding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static splitButtonPanel_buttons_b<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalSplitButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fixedWidthWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static fixedWidthWrapper_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static signInButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static downloadButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static smoothLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static smoothBoundLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static eulaHyperlink<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static acceptEulaButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static eulaContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "buttons" | "padding" | "prompt_wrapper">;
    static eulaContent_promptWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "border" | "prompt_text">;
    static eulaContent_promptWrapper_border<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static eulaContent_promptWrapper_promptText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static eulaContent_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eulaContent_buttons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eula<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static version<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label" | "label_background">;
    static version_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static version_labelBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewTermsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static privacyPolicyButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static agreePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "checkbox_control" | "i_agree_label">;
    static agreePanel_checkboxControl<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static agreePanel_iAgreeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static termItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item">;
    static termItem_item<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsAndConditionsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "terms_string_panel">;
    static termsAndConditionsPanel_termsStringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "buttons_stack_panel">;
    static termsAndConditionsPanel_termsStringPanel_buttonsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "view_terms_button" | "privacy_policy_button" | "agree">;
    static termsAndConditionsPanel_termsStringPanel_buttonsStackPanel_agree<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsAndConditionsPanel_termsStringPanel_buttonsStackPanel_viewTermsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsAndConditionsPanel_termsStringPanel_buttonsStackPanel_privacyPolicyButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static confirmationPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "confirm_button">;
    static confirmationPanel_confirmButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollStackPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "border" | "terms">;
    static scrollStackPanel_border<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollStackPanel_terms<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseConfirmContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "terms_and_conditions_panel" | "confirmation_panel" | "header_padding" | "panel_wrap" | "button_padding">;
    static purchaseConfirmContent_headerPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseConfirmContent_panelWrap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static purchaseConfirmContent_panelWrap_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseConfirmContent_termsAndConditionsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseConfirmContent_buttonPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseConfirmContent_confirmationPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseConfirmContent_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchasePromptContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "prompt_wrap" | "purchase_wrap_centering_container">;
    static purchasePromptContent_promptWrap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "border" | "prompt">;
    static purchasePromptContent_promptWrap_border<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchasePromptContent_promptWrap_prompt<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchasePromptContent_purchaseWrapCenteringContainer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "purchase_wrap">;
    static purchasePromptContent_purchaseWrapCenteringContainer_purchaseWrap<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "purchase" | "padding_middle" | "signout">;
    static purchasePromptContent_purchaseWrapCenteringContainer_purchaseWrap_purchase<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchasePromptContent_purchaseWrapCenteringContainer_purchaseWrap_paddingMiddle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchasePromptContent_purchaseWrapCenteringContainer_purchaseWrap_signout<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchasePrompt<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseConfirm<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchasePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "prompt" | "confirm">;
    static purchasePanel_prompt<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchasePanel_confirm<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static titlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label_wrapper">;
    static titlePanel_titleLabelWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hyperlinkPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "link_stack">;
    static hyperlinkPanel_linkStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "link1" | "link2">;
    static hyperlinkPanel_linkStack_link1<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static hyperlinkPanel_linkStack_link2<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static hyperlinkPanel_linkStack_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static authScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static signInContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "body_text" | "body_hyperlink" | "sign_in_wrapper" | "download_wrapper">;
    static signInContent_bodyText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static signInContent_bodyHyperlink<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static signInContent_signInWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button">;
    static signInContent_signInWrapper_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static signInContent_downloadWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button">;
    static signInContent_downloadWrapper_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "welcome" | "debug" | "eula" | "purchase_panel" | "client_version" | "sign_in" | "sign_in_ios" | "pack_progress" | "demo" | "popup_dialog_factory">;
    static authenticationScreenContent_debug<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationScreenContent_clientVersion<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "version">;
    static authenticationScreenContent_clientVersion_version<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationScreenContent_signIn<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationScreenContent_signInIos<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationScreenContent_packProgress<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationScreenContent_welcome<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationScreenContent_demo<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationScreenContent_eula<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationScreenContent_purchasePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationScreenContent_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupContentBase<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "message" | "content" | "footer_padding">;
    static popupContentBase_message<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "border" | "text">;
    static popupContentBase_message_border<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupContentBase_message_text<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupContentBase_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupContentBase_footerPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "dialog">;
    static popupDialog_dialog<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialInfoIosAdditionalContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dismiss">;
    static trialInfoIosAdditionalContent_dismiss<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogTrialInfoIos<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static studentMessagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialInfoAdditionalContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "buttons">;
    static trialInfoAdditionalContent_buttons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static genericWelcomeAdditionalContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "button_wrapper">;
    static genericWelcomeAdditionalContent_buttonWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "buttons">;
    static genericWelcomeAdditionalContent_buttonWrapper_buttons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogTrialInfo<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogGenericWelcome<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupMessage<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "main_message" | "extra_message">;
    static popupMessage_mainMessage<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupMessage_extraMessage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupMessage_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupMessageStudent<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupHyperlink<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupPurchaseLink<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDismissButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static packProgressContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_padding" | "loading_text_panel" | "loading_bar_panel" | "loading_padding" | "skip_panel" | "bottom_padding">;
    static packProgressContent_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packProgressContent_loadingTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "loading_text">;
    static packProgressContent_loadingTextPanel_loadingText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static packProgressContent_loadingBarPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "loading_bar">;
    static packProgressContent_loadingBarPanel_loadingBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packProgressContent_loadingPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packProgressContent_skipPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "skip_button">;
    static packProgressContent_skipPanel_skipButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static packProgressContent_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static signInIosContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "body_text" | "body_hyperlink" | "signin_ios_button_panel" | "error_sign_in_panel" | "error_download_panel">;
    static signInIosContent_bodyText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static signInIosContent_bodyHyperlink<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static signInIosContent_signinIosButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "buttons" | "app_store_prompt_wrap" | "pad_footer">;
    static signInIosContent_signinIosButtonPanel_appStorePromptWrap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "prompt">;
    static signInIosContent_signinIosButtonPanel_appStorePromptWrap_prompt<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static signInIosContent_signinIosButtonPanel_buttons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static signInIosContent_signinIosButtonPanel_padFooter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static signInIosContent_errorSignInPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button">;
    static signInIosContent_errorSignInPanel_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static signInIosContent_errorDownloadPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button">;
    static signInIosContent_errorDownloadPanel_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static signInIosButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static toAppStore<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "reset" | "state_label" | "state_text_box" | "open_popup" | "refresh_popup" | "toggle_ios">;
    static debugPanel_stateLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugPanel_stateTextBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugPanel_openPopup<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugPanel_refreshPopup<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugPanel_reset<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugPanel_toggleIos<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationPopupLinkButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_padding" | "link_button">;
    static authenticationPopupLinkButton_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationPopupLinkButton_linkButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationPopupContents<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "body" | "link2" | "initial_padding" | "learn_more_link" | "end_padding">;
    static authenticationPopupContents_initialPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationPopupContents_body<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationPopupContents_learnMoreLink<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationPopupContents_link2<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationPopupContents_endPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resizeableScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationPopupContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationPopupButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationPopupOneButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button">;
    static authenticationPopupOneButton_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationPopupTwoButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "button_padding" | "first_button" | "second_button">;
    static authenticationPopupTwoButtons_firstButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationPopupTwoButtons_buttonPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationPopupTwoButtons_secondButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationPopupLowerButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "one_button" | "two_buttons">;
    static authenticationPopupLowerButtonPanel_oneButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationPopupLowerButtonPanel_twoButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static authenticationPopup<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class AutoSaveInfo extends Class {
    static autoSave<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static acceptLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_label">;
    static acceptLabel_buttonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static acceptButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "a" | "title_label" | "common_panel" | "gamepad_helpers" | "message_label" | "save_icon">;
    static mainPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_messageLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_saveIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_a<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_a">;
    static gamepadHelpers_gamepadHelperA<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static autoSaveInfoScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static autoSaveInfoScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "root_panel">;
    static autoSaveInfoScreenContent_rootPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel">;
    static autoSaveInfoScreenContent_rootPanel_mainPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Beacon extends Class {
    static selectedItemDetails<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "root_panel" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory">;
    static beaconPanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPanel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "common_panel" | "beacon_inventory">;
    static beaconPanel_rootPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPanel_rootPanel_beaconInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_cursor" | "inventory_selected_icon_button" | "beacon_inner_panel" | "payment_panel" | "inventory_panel_bottom_half" | "hotbar_grid_template">;
    static beaconPanel_rootPanel_beaconInventory_beaconInnerPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPanel_rootPanel_beaconInventory_paymentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPanel_rootPanel_beaconInventory_inventoryPanelBottomHalf<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPanel_rootPanel_beaconInventory_hotbarGridTemplate<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPanel_rootPanel_beaconInventory_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPanel_rootPanel_beaconInventory_gamepadCursor<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarSlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageAtlas<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pyramidImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pyramidPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "level1" | "level2" | "level3" | "level4">;
    static pyramidPanel_level1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pyramidPanel_level2<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pyramidPanel_level3<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pyramidPanel_level4<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemSeperator<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static usableItemsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "netherite" | "item_seperator_0" | "emerald" | "item_seperator_1" | "diamond" | "item_seperator_2" | "gold" | "item_seperator_3" | "iron">;
    static usableItemsPanel_netherite<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static usableItemsPanel_itemSeperator0<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static usableItemsPanel_emerald<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static usableItemsPanel_itemSeperator1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static usableItemsPanel_diamond<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static usableItemsPanel_itemSeperator2<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static usableItemsPanel_gold<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static usableItemsPanel_itemSeperator3<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static usableItemsPanel_iron<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static hoverText<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static hoverState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "hover_text">;
    static hoverState_hoverText<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonUncheckedDefault<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonUncheckedHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "hover_text">;
    static buttonUncheckedHover_hoverText<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonCheckedHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "hover_text">;
    static buttonCheckedHover_hoverText<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonLocked<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonLockedHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "hover_text">;
    static buttonLockedHover_hoverText<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonChecked<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleButton<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static baseButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static activeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static inactiveButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "hover">;
    static inactiveButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inactiveButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "hover">;
    static selectedButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static secondaryEffectBase<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static speedSecondary<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static hasteSecondary<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static resistSecondary<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static jumpSecondary<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static strengthSecondary<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageTemplate<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "base_image">;
    static imageTemplate_baseImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static secondaryEffectImages<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "speed_secondary" | "haste_secondary" | "resist_secondary" | "jump_secondary" | "strength_secondary">;
    static secondaryEffectImages_speedSecondary<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static secondaryEffectImages_hasteSecondary<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static secondaryEffectImages_resistSecondary<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static secondaryEffectImages_jumpSecondary<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static secondaryEffectImages_strengthSecondary<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleTemplate<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toggle_button" | "$image_control">;
    static toggleTemplate_toggleButton<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleTemplate_$imageControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonTemplate<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "active_button" | "inactive_button" | "image_template">;
    static buttonTemplate_activeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonTemplate_inactiveButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonTemplate_imageTemplate<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelTemplate<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$button_control">;
    static panelTemplate_$buttonControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "speed_panel" | "haste_panel" | "resist_panel" | "jump_panel" | "strength_panel" | "regen_panel" | "extra_panel">;
    static buttonPanel_speedPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toggle_template">;
    static buttonPanel_speedPanel_toggleTemplate<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel_hastePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel_resistPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel_jumpPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel_strengthPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel_regenPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel_extraPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paymentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "usable_items_panel" | "confirm_panel" | "cancel_panel" | "ingredient_item">;
    static paymentPanel_confirmPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paymentPanel_cancelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paymentPanel_ingredientItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paymentPanel_usableItemsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconInnerPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "pyramid_panel" | "button_panel" | "middle_strip" | "primary_power_label" | "secondary_power_label">;
    static beaconInnerPanel_buttonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconInnerPanel_pyramidPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconInnerPanel_middleStrip<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconInnerPanel_primaryPowerLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconInnerPanel_secondaryPowerLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class BeaconPocket extends Class {
    static genericLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelOutline<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static backgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemSeperator<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static usableItemsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "netherite" | "item_seperator_0" | "emerald" | "item_seperator_1" | "diamond" | "item_seperator_2" | "gold" | "item_seperator_3" | "iron">;
    static usableItemsPanel_netherite<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static usableItemsPanel_itemSeperator0<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static usableItemsPanel_emerald<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static usableItemsPanel_itemSeperator1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static usableItemsPanel_diamond<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static usableItemsPanel_itemSeperator2<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static usableItemsPanel_gold<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static usableItemsPanel_itemSeperator3<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static usableItemsPanel_iron<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static pyramidImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pyramidPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "pyramid_image">;
    static pyramidPanel_pyramidImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static backgroundPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "middle_strip">;
    static beaconBackground_middleStrip<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static inventoryContent_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static highlightHoverSquare<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "highlight_square">;
    static highlightHoverSquare_highlightSquare<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonUncheckedDefault<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonUncheckedHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "highlight_hover_square">;
    static buttonUncheckedHover_highlightHoverSquare<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonChecked<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonCheckedHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "highlight_hover_square">;
    static buttonCheckedHover_highlightHoverSquare<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonLocked<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonLockedHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "highlight_hover_square">;
    static buttonLockedHover_highlightHoverSquare<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleButton<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static baseButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "highlight_hover_square">;
    static baseButton_hover_highlightHoverSquare<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static activeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static inactiveButtonImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inactiveButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "hover">;
    static inactiveButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inactiveButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "highlight_hover_square">;
    static inactiveButton_hover_highlightHoverSquare<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedButtonImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "hover">;
    static selectedButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "highlight_hover_square">;
    static selectedButton_hover_highlightHoverSquare<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static secondaryEffectBase<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static speedSecondary<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hasteSecondary<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resistSecondary<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jumpSecondary<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static strengthSecondary<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static secondaryEffectImages<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "speed_secondary" | "haste_secondary" | "resist_secondary" | "jump_secondary" | "strength_secondary">;
    static secondaryEffectImages_speedSecondary<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static secondaryEffectImages_hasteSecondary<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static secondaryEffectImages_resistSecondary<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static secondaryEffectImages_jumpSecondary<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static secondaryEffectImages_strengthSecondary<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageTemplate<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "base_image">;
    static imageTemplate_baseImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleTemplate<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toggle_button" | "$image_control">;
    static toggleTemplate_toggleButton<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleTemplate_$imageControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonTemplate<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "active_button" | "inactive_button" | "image_template">;
    static buttonTemplate_activeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonTemplate_inactiveButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonTemplate_imageTemplate<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelTemplate<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$button_control">;
    static panelTemplate_$buttonControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPowerLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static beaconPowerLabel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconSubPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconButtonLeftPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "panel" | "primary_power_label">;
    static beaconButtonLeftPanel_primaryPowerLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconButtonLeftPanel_panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "pyramids_and_buttons">;
    static beaconButtonLeftPanel_panel_pyramidsAndButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "level1" | "level2" | "level3" | "speed_panel" | "haste_panel" | "resist_panel" | "jump_panel" | "strength_panel">;
    static beaconButtonLeftPanel_panel_pyramidsAndButtons_level1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconButtonLeftPanel_panel_pyramidsAndButtons_speedPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconButtonLeftPanel_panel_pyramidsAndButtons_hastePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconButtonLeftPanel_panel_pyramidsAndButtons_level2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconButtonLeftPanel_panel_pyramidsAndButtons_resistPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconButtonLeftPanel_panel_pyramidsAndButtons_jumpPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconButtonLeftPanel_panel_pyramidsAndButtons_level3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconButtonLeftPanel_panel_pyramidsAndButtons_strengthPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconButtonRightPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "panel" | "secondary_power_label">;
    static beaconButtonRightPanel_secondaryPowerLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconButtonRightPanel_panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "buttons_and_pyramid">;
    static beaconButtonRightPanel_panel_buttonsAndPyramid<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "level4" | "regen_panel" | "extra_panel">;
    static beaconButtonRightPanel_panel_buttonsAndPyramid_level4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconButtonRightPanel_panel_buttonsAndPyramid_regenPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconButtonRightPanel_panel_buttonsAndPyramid_extraPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconButtonsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "beacon_background" | "left_panel" | "right_panel">;
    static beaconButtonsPanel_beaconBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconButtonsPanel_leftPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconButtonsPanel_rightPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static confirmPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "confirm_panel" | "cancel_panel" | "ingredient_item">;
    static confirmPanel_ingredientItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static confirmPanel_confirmPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static confirmPanel_cancelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPaymentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "usable_items_panel" | "confirm_panel" | "pad">;
    static beaconPaymentPanel_usableItemsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPaymentPanel_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPaymentPanel_confirmPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconContentsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "beacon_buttons_panel" | "beacon_payment_panel" | "fill1" | "pad1" | "fill2">;
    static beaconContentsPanel_fill1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconContentsPanel_beaconButtonsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconContentsPanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconContentsPanel_beaconPaymentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconContentsPanel_fill2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "panel" | "header_background" | "legacy_pocket_close_button">;
    static header_headerBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static header_legacyPocketCloseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static header_panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label">;
    static header_panel_titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryAndBeaconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_half_screen" | "beacon_half_screen">;
    static inventoryAndBeaconPanel_inventoryHalfScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_content">;
    static inventoryAndBeaconPanel_inventoryHalfScreen_inventoryContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryAndBeaconPanel_beaconHalfScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "beacon_content">;
    static inventoryAndBeaconPanel_beaconHalfScreen_beaconContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerAndContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "header" | "inventory_and_beacon_panel">;
    static headerAndContentStackPanel_header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerAndContentStackPanel_inventoryAndBeaconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "root_panel" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory" | "inventory_selected_icon_button" | "header_and_content_stack_panel" | "bg" | "hold_icon">;
    static beaconPanel_bg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPanel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPanel_headerAndContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPanel_holdIcon<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconPanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class BlastFurnace extends Class {
    static blastFurnaceScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Book extends Class {
    static screenshot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "caption_edit">;
    static screenshotFrame_captionEdit<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoCorner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoCornerBl<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoCornerBr<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoCornerTr<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoCornerTl<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageCaption<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static pagePhoto<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "screenshot" | "screenshot_frame" | "photo_corner_bl" | "photo_corner_br" | "photo_corner_tr" | "photo_corner_tl">;
    static pagePhoto_screenshot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pagePhoto_screenshotFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pagePhoto_photoCornerBl<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pagePhoto_photoCornerBr<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pagePhoto_photoCornerTl<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pagePhoto_photoCornerTr<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pickItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button" | "photo">;
    static pickItem_photo<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pickItem_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static pickItemInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button" | "photo">;
    static pickItemInventory_photo<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pickItemInventory_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static header<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static textCenteringPanelInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_header">;
    static textCenteringPanelInventory_inventoryHeader<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static textCenteringPanelPortfolio<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "portfolio_header">;
    static textCenteringPanelPortfolio_portfolioHeader<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static pickScrollingContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "inventory_grid" | "inventory_header" | "portfolio_header" | "portfolio_grid">;
    static pickScrollingContent_inventoryHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pickScrollingContent_inventoryGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pickScrollingContent_portfolioHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pickScrollingContent_portfolioGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pickPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "scroll" | "close_button">;
    static pickPanel_scroll<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pickPanel_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static blank<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookSpineImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageCreaseLeftImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageCreaseRightImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageEdgeLeftImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageEdgeRightImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditHoverImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static baseButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookButtonsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "sign_export_buttons" | "im_content_button">;
    static bookButtonsPanel_signExportButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_spacer" | "sign_button" | "export_button" | "right_spacer">;
    static bookButtonsPanel_signExportButtons_leftSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookButtonsPanel_signExportButtons_signButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookButtonsPanel_signExportButtons_exportButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookButtonsPanel_signExportButtons_rightSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookButtonsPanel_imContentButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static coverButtonsStackPanelHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cover_buttons_stack_panel">;
    static coverButtonsStackPanelHolder_coverButtonsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "finalize_button" | "padding_1" | "cancel_sign_button">;
    static coverButtonsStackPanelHolder_coverButtonsStackPanel_finalizeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static coverButtonsStackPanelHolder_coverButtonsStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static coverButtonsStackPanelHolder_coverButtonsStackPanel_cancelSignButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonDefault<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonPressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static closeButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageTextEdit<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageText<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageNumberLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static paddedButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button">;
    static paddedButton_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "swap_page_left" | "insert_text_page" | "insert_photo_page" | "delete_page" | "swap_page_right">;
    static pageButtonsPanel_swapPageLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageButtonsPanel_insertTextPage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageButtonsPanel_insertPhotoPage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageButtonsPanel_deletePage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageButtonsPanel_swapPageRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "page_photo" | "page_text" | "page_number_label" | "page_buttons_panel" | "edit_page">;
    static pageContentPanel_pageText<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageContentPanel_pagePhoto<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageContentPanel_pageNumberLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageContentPanel_pageButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageContentPanel_editPage<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleTextBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static authorLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static authorTextBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static authorStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "author_label_panel" | "author_text_panel">;
    static authorStackPanel_authorLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "author_label">;
    static authorStackPanel_authorLabelPanel_authorLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static authorStackPanel_authorTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "author_text_box">;
    static authorStackPanel_authorTextPanel_authorTextBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static coverContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label" | "title_text_box" | "author_stack_panel" | "warning_label">;
    static coverContentPanel_titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static coverContentPanel_titleTextBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static coverContentPanel_authorStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static coverContentPanel_warningLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static coverAndButtonsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cover_buttons_stack_panel_holder" | "cover_panel">;
    static coverAndButtonsPanel_coverPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "close_button" | "book_background" | "cover_content_panel">;
    static coverAndButtonsPanel_coverPanel_coverContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static coverAndButtonsPanel_coverPanel_bookBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static coverAndButtonsPanel_coverPanel_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static coverAndButtonsPanel_coverButtonsStackPanelHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "page_content_panel" | "$page_crease_image" | "$page_edge_image">;
    static pagePanel_pageContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pagePanel_$pageCreaseImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pagePanel_$pageEdgeImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "page_panel_left" | "page_panel_right">;
    static bookGrid_pagePanelLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookGrid_pagePanelRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookAndButtonsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "book_buttons_panel" | "book_panel">;
    static bookAndButtonsPanel_bookPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "close_button" | "book_background" | "book_spine_image" | "book_grid" | "prev_button" | "next_button">;
    static bookAndButtonsPanel_bookPanel_bookGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookAndButtonsPanel_bookPanel_bookBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookAndButtonsPanel_bookPanel_bookSpineImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookAndButtonsPanel_bookPanel_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookAndButtonsPanel_bookPanel_prevButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookAndButtonsPanel_bookPanel_nextButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookAndButtonsPanel_bookButtonsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "root_panel">;
    static bookScreenContent_rootPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_a" | "pick_panel" | "cover_and_buttons_panel" | "book_and_buttons_panel" | "export_progress" | "gamepad_helper_b">;
    static bookScreenContent_rootPanel_bookAndButtonsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookScreenContent_rootPanel_coverAndButtonsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookScreenContent_rootPanel_pickPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookScreenContent_rootPanel_exportProgress<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookScreenContent_rootPanel_gamepadHelperA<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookScreenContent_rootPanel_gamepadHelperB<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class BrewingStand extends Class {
    static brewingPipes<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingFuelPipes<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bottleEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static fuelEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bubblesEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bubblesFullImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingArrowEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingArrowFullImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingFuelBarEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingFuelBarFullImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingstandOutputItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingOutputSlots<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "left_offset" | "output_grid_item2" | "right_offset">;
    static brewingOutputSlots_leftOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "output_grid_item1">;
    static brewingOutputSlots_leftOffset_outputGridItem1<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingOutputSlots_outputGridItem2<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingOutputSlots_rightOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "output_grid_item3">;
    static brewingOutputSlots_rightOffset_outputGridItem3<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingInputSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "input_grid_item">;
    static brewingInputSlot_inputGridItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingFuelSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "fuel_grid_item">;
    static brewingFuelSlot_fuelGridItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingPanelTopHalf<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "brewing_label" | "brewing_stand_pictogram">;
    static brewingPanelTopHalf_brewingLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingPanelTopHalf_brewingStandPictogram<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPictogram<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "brewing_pipes" | "brewing_fuel_pipes" | "bubbles_empty_image" | "bubbles_full_image" | "brewing_arrow_empty_image" | "brewing_arrow_full_image" | "brewing_fuel_bar_empty_image" | "brewing_fuel_bar_full_image" | "brewing_output_slots" | "brewing_input_slot" | "brewing_fuel_slot">;
    static brewingStandPictogram_brewingInputSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPictogram_brewingOutputSlots<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPictogram_brewingFuelSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPictogram_brewingArrowEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPictogram_brewingArrowFullImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPictogram_brewingFuelBarEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPictogram_brewingFuelBarFullImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPictogram_bubblesEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPictogram_bubblesFullImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPictogram_brewingFuelPipes<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPictogram_brewingPipes<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "root_panel" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory">;
    static brewingStandPanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPanel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_cursor" | "common_panel" | "inventory_selected_icon_button" | "furnace_screen_inventory">;
    static brewingStandPanel_rootPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPanel_rootPanel_furnaceScreenInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_panel_bottom_half_with_label" | "hotbar_grid" | "inventory_take_progress_icon_button" | "brewing_panel_top_half">;
    static brewingStandPanel_rootPanel_furnaceScreenInventory_brewingPanelTopHalf<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPanel_rootPanel_furnaceScreenInventory_inventoryPanelBottomHalfWithLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPanel_rootPanel_furnaceScreenInventory_hotbarGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPanel_rootPanel_furnaceScreenInventory_inventoryTakeProgressIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPanel_rootPanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPanel_rootPanel_gamepadCursor<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class BrewingStandPocket extends Class {
    static genericLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingFuelPipes<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bubblesEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bubblesFullImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bottleEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static backgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static outputSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingInputSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "input_slot">;
    static brewingInputSlot_inputSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingFuelSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "fuel_slot">;
    static brewingFuelSlot_fuelSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingOutSlots<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "middle" | "left_offset" | "right_offset">;
    static brewingOutSlots_leftOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "output_slot1">;
    static brewingOutSlots_leftOffset_outputSlot1<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingOutSlots_middle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "output_slot2">;
    static brewingOutSlots_middle_outputSlot2<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingOutSlots_rightOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "output_slot3">;
    static brewingOutSlots_rightOffset_outputSlot3<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "brewing_pipes" | "brewing_fuel_pipes" | "brewing_input_slot" | "brewing_fuel_slot" | "brewing_out_slots" | "brewing_arrow_panel" | "brewing_bubbles_panel" | "brewing_fuel_bar_panel">;
    static slotsPanel_brewingInputSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel_brewingFuelSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel_brewingOutSlots<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel_brewingArrowPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "brewing_arrow_empty_image" | "brewing_arrow_full_image">;
    static slotsPanel_brewingArrowPanel_brewingArrowEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel_brewingArrowPanel_brewingArrowFullImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel_brewingBubblesPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bubbles_empty_image" | "bubbles_full_image">;
    static slotsPanel_brewingBubblesPanel_bubblesEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel_brewingBubblesPanel_bubblesFullImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel_brewingFuelBarPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "brewing_fuel_bar_empty_image" | "brewing_fuel_bar_full_image">;
    static slotsPanel_brewingFuelBarPanel_brewingFuelBarEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel_brewingFuelBarPanel_brewingFuelBarFullImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel_brewingFuelPipes<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel_brewingPipes<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static inventoryContent_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandContentsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "slots_panel">;
    static brewingStandContentsPanel_slotsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "panel" | "header_background" | "legacy_pocket_close_button">;
    static header_headerBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static header_legacyPocketCloseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static header_panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label">;
    static header_panel_titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryAndBrewingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_half_screen" | "brewing_half_screen">;
    static inventoryAndBrewingPanel_inventoryHalfScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_content">;
    static inventoryAndBrewingPanel_inventoryHalfScreen_inventoryContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryAndBrewingPanel_brewingHalfScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "brewing_stand_contents_panel">;
    static inventoryAndBrewingPanel_brewingHalfScreen_brewingStandContentsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerAndContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "header" | "inventory_and_brewing_panel">;
    static headerAndContentStackPanel_header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerAndContentStackPanel_inventoryAndBrewingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "root_panel" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory" | "inventory_selected_icon_button" | "header_and_content_stack_panel" | "bg" | "hold_icon">;
    static brewingStandPanel_bg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPanel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPanel_headerAndContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPanel_holdIcon<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandPanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class BundlePurchaseWarning extends Class {
    static xPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static yPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content" | "banner_image" | "game_pad_focus_border">;
    static bundleGridItem_bannerImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleGridItem_content<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleGridItem_gamePadFocusBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static isFocused<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image_border" | "banner_border">;
    static isFocused_imageBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static isFocused_bannerBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static focusBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static focusBorderButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static focusBorderButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static focusBorderButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static focusBorderButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridItemContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "image_border" | "padding_0" | "bundle_title_panel">;
    static gridItemContent_imageBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "bundle_thumbnail">;
    static gridItemContent_imageBorder_bundleThumbnail<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridItemContent_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridItemContent_bundleTitlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bundle_title">;
    static gridItemContent_bundleTitlePanel_bundleTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static sideContents<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title_alignment_hack" | "padding_y_0" | "grid_input_panel">;
    static sideContents_titleAlignmentHack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "side_section_title">;
    static sideContents_titleAlignmentHack_sideSectionTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static sideContents_paddingY0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sideContents_gridInputPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "grid_scroll">;
    static sideContents_gridInputPanel_gridScroll<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "grid_stack">;
    static dialogContent_gridStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_grid_scroll" | "padding_x_divider" | "right_grid_scroll">;
    static dialogContent_gridStack_leftGridScroll<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent_gridStack_paddingXDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent_gridStack_rightGridScroll<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseButtonPanel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundlePurchaseWarningScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dialog">;
    static bundlePurchaseWarningScreenContent_dialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundlePurchaseWarningScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Cartography extends Class {
    static titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static plusSignIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditControl<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyOutputSlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "container_item">;
    static cartographyItemSlot_containerItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mapImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mapImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "map" | "none_map" | "copy_map" | "rename_map" | "locator_map" | "zoom_map" | "lock_map">;
    static mapImagePanel_noneMap<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mapImagePanel_copyMap<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mapImagePanel_renameMap<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mapImagePanel_map<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mapImagePanel_locatorMap<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mapImagePanel_zoomMap<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mapImagePanel_lockMap<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static textBoxPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "text_edit_control" | "map_name_label">;
    static textBoxPanel_mapNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static textBoxPanel_textEditControl<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputSlots<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "input_item_slot" | "plus_centerer" | "additional_item_slot">;
    static inputSlots_inputItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputSlots_plusCenterer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "plus_sign_icon">;
    static inputSlots_plusCenterer_plusSignIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputSlots_additionalItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static outputDescriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "arrow_icon" | "result_item_slot" | "map_image_panel" | "input_slots" | "arrow_icon2">;
    static mainPanel_inputSlots<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_arrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_mapImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_arrowIcon2<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_resultItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title_panel" | "text_box_panel" | "output_description_label" | "padding1" | "padding2" | "padding3" | "padding4" | "main_panel_wrap" | "padding5">;
    static topHalfPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfPanel_titlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label">;
    static topHalfPanel_titlePanel_titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfPanel_textBoxPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfPanel_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfPanel_mainPanelWrap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel">;
    static topHalfPanel_mainPanelWrap_mainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfPanel_outputDescriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfPanel_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "root_panel" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory">;
    static cartographyPanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyPanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyPanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyPanel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_cursor" | "common_panel" | "inventory_selected_icon_button" | "cartography_screen_inventory" | "tab_close_and_help_button">;
    static cartographyPanel_rootPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyPanel_rootPanel_cartographyScreenInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top_half_panel" | "inventory_panel_bottom_half_with_label" | "hotbar_grid" | "inventory_take_progress_icon_button">;
    static cartographyPanel_rootPanel_cartographyScreenInventory_topHalfPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyPanel_rootPanel_cartographyScreenInventory_inventoryPanelBottomHalfWithLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyPanel_rootPanel_cartographyScreenInventory_hotbarGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyPanel_rootPanel_cartographyScreenInventory_inventoryTakeProgressIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyPanel_rootPanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyPanel_rootPanel_gamepadCursor<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyPanel_rootPanel_tabCloseAndHelpButton<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyPanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CartographyPocket extends Class {
    static verticalArrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static chestItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static additionalItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content" | "navigation_tabs_holder">;
    static rightPanel_content<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "bg" | "cartography_content_stack_panel">;
    static rightPanel_content_bg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_content_cartographyContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_navigationTabsHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "right_navigation_tabs">;
    static rightPanel_navigationTabsHolder_rightNavigationTabs<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightTabCartography<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightNavigationTabs<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "fill" | "right_tab_cartography" | "pocket_tab_close_and_help_button">;
    static rightNavigationTabs_pocketTabCloseAndHelpButton<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightNavigationTabs_fill<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightNavigationTabs_rightTabCartography<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputSlotsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "input_item_slot">;
    static inputSlotsStackPanel_inputItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputSlots<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "input_item_slot" | "plus_centerer" | "additional_item_slot">;
    static inputSlots_inputItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputSlots_plusCenterer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "plus_sign_icon">;
    static inputSlots_plusCenterer_plusSignIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputSlots_additionalItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "panel" | "padding_1" | "text_box_panel" | "label_holder" | "padding_2" | "map_centerer" | "description_centerer" | "padding_3" | "arrow_centerer" | "padding_4" | "result_centerer" | "filling_panel">;
    static cartographyContentStackPanel_labelHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cartography_label">;
    static cartographyContentStackPanel_labelHolder_cartographyLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyContentStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyContentStackPanel_panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "input_slots">;
    static cartographyContentStackPanel_panel_inputSlots<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyContentStackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyContentStackPanel_mapCenterer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "map_image_panel">;
    static cartographyContentStackPanel_mapCenterer_mapImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyContentStackPanel_descriptionCenterer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "output_description_label">;
    static cartographyContentStackPanel_descriptionCenterer_outputDescriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyContentStackPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyContentStackPanel_arrowCenterer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "vertical_arrow_icon">;
    static cartographyContentStackPanel_arrowCenterer_verticalArrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyContentStackPanel_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyContentStackPanel_resultCenterer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "result_item_slot">;
    static cartographyContentStackPanel_resultCenterer_resultItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyContentStackPanel_fillingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyContentStackPanel_textBoxPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "inventory_title_label_centerer" | "inventory_scroll_panel">;
    static inventoryPanel_inventoryTitleLabelCenterer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_title_label">;
    static inventoryPanel_inventoryTitleLabelCenterer_inventoryTitleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryPanel_inventoryScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static patternButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static patternScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content" | "gamepad_helpers_and_tabs_holder">;
    static leftPanel_gamepadHelpersAndTabsHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "navigation_tabs_holder" | "tabs_left_gamepad_helpers">;
    static leftPanel_gamepadHelpersAndTabsHolder_tabsLeftGamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_gamepadHelpersAndTabsHolder_navigationTabsHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left_navigation_tabs">;
    static leftPanel_gamepadHelpersAndTabsHolder_navigationTabsHolder_leftNavigationTabs<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_content<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "bg" | "inventory_panel">;
    static leftPanel_content_bg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_content_inventoryPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftTabInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftNavigationTabs<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "left_tab_inventory">;
    static leftNavigationTabs_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftNavigationTabs_leftTabInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketHotbarAndContentPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory" | "inventory_selected_icon_button" | "inventory_take_progress_icon_button" | "pocket_hotbar_and_content_panels">;
    static cartographyPanel_pocketHotbarAndContentPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyPanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyPanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyPanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyPanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyPanel_inventoryTakeProgressIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cartographyPanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Chalkboard extends Class {
    static textEditControl<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static lockedToggle<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static lockedLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static lockControl<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "toggle" | "pad_wrap">;
    static lockControl_toggle<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static lockControl_padWrap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static lockControl_padWrap_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_a">;
    static gamepadHelpers_gamepadHelperA<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chalkboardScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static chalkboardRoot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chalkboardContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "edit_box" | "gamepad_helpers" | "locked_toggle">;
    static chalkboardContent_gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chalkboardContent_editBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static chalkboardContent_lockedToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Chat extends Class {
    static downArrowImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static copyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pasteImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gearImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sendImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sendPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "send_image_panel" | "gamepad_x_button">;
    static sendPanel_sendImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "send_image">;
    static sendPanel_sendImagePanel_sendImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sendPanel_gamepadXButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "side_padding" | "gamepad_x_button_image">;
    static sendPanel_gamepadXButton_sidePadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sendPanel_gamepadXButton_gamepadXButtonImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static sendPanel_gamepadXButton_gamepadXButtonImage_icon<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "down_arrow_image" | "keyboard_image">;
    static keyboardImagePanel_keyboardImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardImagePanel_downArrowImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smallButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatSettingsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static sendButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static messagesText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static messagesText_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static messageTtsWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static messagesStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static messagesScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandsBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static clickAutocompleteIsFocused<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static autoCompletePanelContentsWithItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text" | "auto_complete_item_renderer" | "autocomplete_button">;
    static autoCompletePanelContentsWithItem_autoCompleteItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static autoCompletePanelContentsWithItem_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static autoCompletePanelContentsWithItem_autocompleteButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static autoCompletePanelContentsWithItem_autocompleteButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static autoCompletePanelContentsWithItem_autocompleteButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static autoCompletePanelContentsWithItem_autocompleteButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static autoCompletePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "panel">;
    static autoCompletePanel_panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "auto_complete_grid">;
    static autoCompletePanel_panel_autoCompleteGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "auto_complete_panel">;
    static commandsPanel_autoCompletePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatBottomPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "send_button" | "keyboard_button" | "host_main_button" | "chat_settings" | "text_box">;
    static chatBottomPanel_keyboardButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatBottomPanel_hostMainButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatBottomPanel_chatSettings<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatBottomPanel_textBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatBottomPanel_sendButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_panel">;
    static titleText_titlePanel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static backContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "back_button" | "gamepad_back_helper">;
    static backContentPanel_backButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static backContentPanel_gamepadBackHelper<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_button">;
    static backContentPanel_gamepadBackHelper_gamepadHelperButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static coordinateDropdownContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "block_position" | "top_padding" | "bottom_padding" | "my_position">;
    static coordinateDropdownContent_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static coordinateDropdownContent_myPosition<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static coordinateDropdownContent_blockPosition<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static coordinateDropdownContent_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static coordinateDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupToast<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static copyCoordinateButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static pasteButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatHeader<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "title_panel">;
    static chatHeader_titlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title" | "popup_dialog_factory" | "back_button_content_panel" | "chat_header_content_area">;
    static chatHeader_titlePanel_backButtonContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatHeader_titlePanel_title<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatHeader_titlePanel_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatHeader_titlePanel_chatHeaderContentArea<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "icon" | "coordinate_dropdown" | "copy_coordinate_button" | "paste_button" | "coordinates_panel">;
    static chatHeader_titlePanel_chatHeaderContentArea_coordinateDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatHeader_titlePanel_chatHeaderContentArea_coordinatesPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "coordinates_background_image">;
    static chatHeader_titlePanel_chatHeaderContentArea_coordinatesPanel_coordinatesBackgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "coordinates_text">;
    static chatHeader_titlePanel_chatHeaderContentArea_coordinatesPanel_coordinatesBackgroundImage_coordinatesText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatHeader_titlePanel_chatHeaderContentArea_copyCoordinateButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatHeader_titlePanel_chatHeaderContentArea_icon<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatHeader_titlePanel_chatHeaderContentArea_pasteButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "chat_bottom_panel" | "messages_panel" | "chat_top_panel" | "autocomplete_commands_panel" | "host_main_panel" | "popup_factory">;
    static chatScreenContent_messagesPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatScreenContent_chatBottomPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatScreenContent_chatTopPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatScreenContent_autocompleteCommandsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatScreenContent_hostMainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatScreenContent_popupFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class ChatSettings extends Class {
    static muteAllToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static muteEmoteChatToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatTtsToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resetButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static typefaceDropdownContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_padding" | "bottom_padding" | "mojangles" | "noto_sans">;
    static typefaceDropdownContent_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static typefaceDropdownContent_mojangles<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static typefaceDropdownContent_notoSans<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static typefaceDropdownContent_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static typefaceDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatColorDropdownContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "0" | "1" | "2" | "3" | "4" | "5" | "6" | "top_padding" | "bottom_padding">;
    static chatColorDropdownContent_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatColorDropdownContent_0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatColorDropdownContent_1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatColorDropdownContent_2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatColorDropdownContent_3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatColorDropdownContent_4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatColorDropdownContent_5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatColorDropdownContent_6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatColorDropdownContent_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static colorsDropdownBase<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatColorDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mentionsColorDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fontSizeSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lineSpacingSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static coloredIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon" | "icon_overlay">;
    static coloredIconPanel_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static coloredIconPanel_iconOverlay<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static paintbrush<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lineBreak<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "line_break_image">;
    static lineBreak_lineBreakImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatSettingsScrollingContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "chat_settings_content_area">;
    static chatSettingsScrollingContent_chatSettingsContentArea<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "font_size" | "mute_all_toggle" | "mute_emote_chat_toggle" | "chat_tts_toggle" | "reset_button" | "typeface_dropdown" | "toggles_to_font_shape" | "line_spacing" | "font_shape_to_font_colors" | "chat_color" | "mentions_color">;
    static chatSettingsScrollingContent_chatSettingsContentArea_muteAllToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatSettingsScrollingContent_chatSettingsContentArea_muteEmoteChatToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatSettingsScrollingContent_chatSettingsContentArea_chatTtsToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatSettingsScrollingContent_chatSettingsContentArea_togglesToFontShape<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatSettingsScrollingContent_chatSettingsContentArea_typefaceDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatSettingsScrollingContent_chatSettingsContentArea_fontSize<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatSettingsScrollingContent_chatSettingsContentArea_lineSpacing<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatSettingsScrollingContent_chatSettingsContentArea_fontShapeToFontColors<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatSettingsScrollingContent_chatSettingsContentArea_chatColor<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatSettingsScrollingContent_chatSettingsContentArea_mentionsColor<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatSettingsScrollingContent_chatSettingsContentArea_resetButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatSettingScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatSettingsPopup<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Chest extends Class {
    static chestLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static chestGridItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smallChestGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeChestGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static smallChestPanelTopHalf<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "chest_label" | "small_chest_grid">;
    static smallChestPanelTopHalf_chestLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static smallChestPanelTopHalf_smallChestGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeChestPanelTopHalf<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "chest_label" | "large_chest_grid">;
    static largeChestPanelTopHalf_chestLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeChestPanelTopHalf_largeChestGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static smallChestPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "root_panel" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory">;
    static smallChestPanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smallChestPanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static smallChestPanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static smallChestPanel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_cursor" | "common_panel" | "inventory_selected_icon_button" | "chest_panel">;
    static smallChestPanel_rootPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smallChestPanel_rootPanel_chestPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "inventory_panel_bottom_half_with_label" | "hotbar_grid" | "inventory_take_progress_icon_button" | "small_chest_panel_top_half">;
    static smallChestPanel_rootPanel_chestPanel_smallChestPanelTopHalf<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smallChestPanel_rootPanel_chestPanel_inventoryPanelBottomHalfWithLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smallChestPanel_rootPanel_chestPanel_hotbarGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static smallChestPanel_rootPanel_chestPanel_inventoryTakeProgressIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static smallChestPanel_rootPanel_chestPanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static smallChestPanel_rootPanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static smallChestPanel_rootPanel_gamepadCursor<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedItemDetails<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeChestPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "root_panel" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory">;
    static largeChestPanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeChestPanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeChestPanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeChestPanel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_cursor" | "common_panel" | "inventory_selected_icon_button" | "chest_panel">;
    static largeChestPanel_rootPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeChestPanel_rootPanel_chestPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "inventory_panel_bottom_half_with_label" | "hotbar_grid" | "inventory_take_progress_icon_button" | "large_chest_panel_top_half">;
    static largeChestPanel_rootPanel_chestPanel_largeChestPanelTopHalf<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeChestPanel_rootPanel_chestPanel_inventoryPanelBottomHalfWithLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeChestPanel_rootPanel_chestPanel_hotbarGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeChestPanel_rootPanel_chestPanel_inventoryTakeProgressIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeChestPanel_rootPanel_chestPanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeChestPanel_rootPanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeChestPanel_rootPanel_gamepadCursor<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static enderChestPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static shulkerBoxPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static barrelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smallChestScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeChestScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static enderChestScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static shulkerBoxScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static barrelScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class ChooseRealm extends Class {
    static realmScreenshot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "picture">;
    static realmScreenshot_picture<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsScrollContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static realmsScrollContent_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_stack_panel">;
    static realmsScrollPanel_realmsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "realms_world_item_grid" | "add_realm_button" | "ten_player_button" | "two_player_button">;
    static realmsScrollPanel_realmsStackPanel_realmsWorldItemGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsScrollPanel_realmsStackPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsScrollPanel_realmsStackPanel_addRealmButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsScrollPanel_realmsStackPanel_tenPlayerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsScrollPanel_realmsStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsScrollPanel_realmsStackPanel_twoPlayerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldItemGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldItem<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "realms_world_item_button">;
    static realmsWorldItem_realmsWorldItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static addRealmButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static tenPlayerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static twoPlayerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "realm_screenshot" | "realms_world_content_text_area_panel" | "realms_world_content_status_area_panel">;
    static realmsWorldContentPanel_realmScreenshot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldContentPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldContentPanel_realmsWorldContentTextAreaPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_world_text_panel">;
    static realmsWorldContentPanel_realmsWorldContentTextAreaPanel_realmsWorldTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_world_header">;
    static realmsWorldContentPanel_realmsWorldContentTextAreaPanel_realmsWorldTextPanel_realmsWorldHeader<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldContentPanel_realmsWorldContentStatusAreaPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "world_player_count_text_panel" | "realms_world_game_status_icon">;
    static realmsWorldContentPanel_realmsWorldContentStatusAreaPanel_worldPlayerCountTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_world_player_count">;
    static realmsWorldContentPanel_realmsWorldContentStatusAreaPanel_worldPlayerCountTextPanel_realmsWorldPlayerCount<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldContentPanel_realmsWorldContentStatusAreaPanel_realmsWorldGameStatusIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "game_online_icon" | "game_unavailable_icon" | "game_offline_icon">;
    static realmsWorldContentPanel_realmsWorldContentStatusAreaPanel_realmsWorldGameStatusIcon_gameOnlineIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldContentPanel_realmsWorldContentStatusAreaPanel_realmsWorldGameStatusIcon_gameUnavailableIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldContentPanel_realmsWorldContentStatusAreaPanel_realmsWorldGameStatusIcon_gameOfflineIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_bars" | "realms_scroll_content">;
    static mainPanel_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_realmsScrollContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "slots_stack_panel">;
    static slotsScrollPanel_slotsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "choose_slot_text" | "slots_grid">;
    static slotsScrollPanel_slotsStackPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsScrollPanel_slotsStackPanel_chooseSlotText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsScrollPanel_slotsStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsScrollPanel_slotsStackPanel_slotsGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "slot_1" | "slot_2" | "slot_3">;
    static slotsGrid_slot1<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsGrid_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsGrid_slot2<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsGrid_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsGrid_slot3<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "world_slot_top" | "world_slot_bottom">;
    static slotContentPanel_worldSlotTop<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "plus_image" | "world_thumbnail">;
    static slotContentPanel_worldSlotTop_plusImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotContentPanel_worldSlotTop_worldThumbnail<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotContentPanel_worldSlotBottom<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "white_line_hover" | "world_text_panel">;
    static slotContentPanel_worldSlotBottom_whiteLineHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotContentPanel_worldSlotBottom_worldTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background_grey" | "background_green" | "world_text">;
    static slotContentPanel_worldSlotBottom_worldTextPanel_backgroundGrey<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotContentPanel_worldSlotBottom_worldTextPanel_backgroundGreen<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotContentPanel_worldSlotBottom_worldTextPanel_worldText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "slots_scroll_content">;
    static slotPanel_slotsScrollContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static slotPanel_slotsScrollContent_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chooseRealmScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static chooseRealmScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realm_dialog" | "slot_dialog">;
    static chooseRealmScreenContent_realmDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chooseRealmScreenContent_slotDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CloudUpload extends Class {
    static cloudUploadScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_content" | "popup_dialog_factory">;
    static screenContent_mainContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "common_panel" | "progress_title_text" | "inner_content">;
    static screenContent_mainContent_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenContent_mainContent_progressTitleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenContent_mainContent_innerContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cancel" | "progress_loading_bars" | "description_stack">;
    static screenContent_mainContent_innerContent_descriptionStack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenContent_mainContent_innerContent_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenContent_mainContent_innerContent_cancel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenContent_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "description_1" | "description_2">;
    static descriptionStack_description1<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionStack_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionStack_description2<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cancelButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static retryButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static serviceAgreementButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static privacyStatementButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static uploadWorldButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsAndConditionsDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsCheckbox<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, "header_description_stack_panel">;
    static termsCheckbox_headerDescriptionStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "checkbox_visuals" | "buffer_panel" | "another_panel">;
    static termsCheckbox_headerDescriptionStackPanel_checkboxVisuals<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsCheckbox_headerDescriptionStackPanel_bufferPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static termsCheckbox_headerDescriptionStackPanel_bufferPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsCheckbox_headerDescriptionStackPanel_anotherPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsBottomPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cloud_upload_service_agreement_button" | "cloud_upload_privacy_statement">;
    static termsBottomPanel_cloudUploadServiceAgreementButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsBottomPanel_cloudUploadPrivacyStatement<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsAndConditions<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static failedDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static failedRetryableDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static uploadFailedRetryable<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uploadFailed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static succeededDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static uploadSucceeded<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingChild<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static scrollingChild_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CoinPurchase extends Class {
    static blackImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannerFill<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static coinsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "coin" | "coin_padding" | "text_padding">;
    static coinsStackPanel_coin<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static coinsStackPanel_coinPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static coinsStackPanel_textPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "coins_without_bonus">;
    static coinsStackPanel_textPadding_coinsWithoutBonus<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutCoinsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "coin" | "coin_padding" | "text_padding">;
    static callOutCoinsStackPanel_coin<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutCoinsStackPanel_coinPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutCoinsStackPanel_textPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "coins_without_bonus">;
    static callOutCoinsStackPanel_textPadding_coinsWithoutBonus<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bonus_coins_stack" | "call_out_background">;
    static buttonContent_bonusCoinsStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonContent_callOutBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "bevel">;
    static buttonContent_callOutBackground_bevel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutButtonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "call_out_background" | "call_out_header" | "call_out_bonus_coins_stack">;
    static callOutButtonContent_callOutHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutButtonContent_callOutBonusCoinsStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutButtonContent_callOutBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "call_out_border">;
    static callOutButtonContent_callOutBackground_callOutBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "call_out_banner" | "call_out_label">;
    static callOutHeader_callOutBanner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutHeader_callOutLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bonusCoinsStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "padding_2" | "image_padding" | "image_panel" | "non_bonus_padding_0" | "price_panel" | "plus_label" | "non_bonus_padding_1" | "bonus_label_panel" | "bonus_price_panel" | "currency_panel">;
    static bonusCoinsStack_imagePadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bonusCoinsStack_imagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image">;
    static bonusCoinsStack_imagePanel_image<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bonusCoinsStack_nonBonusPadding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bonusCoinsStack_pricePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "coins_stack_panel">;
    static bonusCoinsStack_pricePanel_coinsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bonusCoinsStack_plusLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "plus_label">;
    static bonusCoinsStack_plusLabel_plusLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bonusCoinsStack_nonBonusPadding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bonusCoinsStack_bonusLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bonus_label">;
    static bonusCoinsStack_bonusLabelPanel_bonusLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bonusCoinsStack_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bonusCoinsStack_bonusPricePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "coins_stack_panel">;
    static bonusCoinsStack_bonusPricePanel_coinsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bonusCoinsStack_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bonusCoinsStack_currencyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "currency_price_panel">;
    static bonusCoinsStack_currencyPanel_currencyPricePanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "price" | "debug_price">;
    static bonusCoinsStack_currencyPanel_currencyPricePanel_price<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bonusCoinsStack_currencyPanel_currencyPricePanel_debugPrice<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bonusCoinsStack_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutBonusCoinsStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "padding_2" | "image_padding" | "image_panel" | "non_bonus_padding_0" | "price_panel" | "plus_label" | "bonus_label_panel" | "currency_panel" | "non_bonus_padding" | "bonus_coin_panel">;
    static callOutBonusCoinsStack_imagePadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutBonusCoinsStack_imagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image">;
    static callOutBonusCoinsStack_imagePanel_image<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutBonusCoinsStack_nonBonusPadding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutBonusCoinsStack_pricePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "call_out_coins_stack_panel">;
    static callOutBonusCoinsStack_pricePanel_callOutCoinsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutBonusCoinsStack_plusLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "plus_label">;
    static callOutBonusCoinsStack_plusLabel_plusLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutBonusCoinsStack_nonBonusPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutBonusCoinsStack_bonusLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bonus_label">;
    static callOutBonusCoinsStack_bonusLabelPanel_bonusLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutBonusCoinsStack_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutBonusCoinsStack_bonusCoinPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "coin_padding" | "fill_panel_0" | "coin_panel" | "bonus_coin_label_panel" | "fill_panel_1">;
    static callOutBonusCoinsStack_bonusCoinPanel_fillPanel0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutBonusCoinsStack_bonusCoinPanel_coinPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "coin">;
    static callOutBonusCoinsStack_bonusCoinPanel_coinPanel_coin<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutBonusCoinsStack_bonusCoinPanel_coinPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutBonusCoinsStack_bonusCoinPanel_bonusCoinLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bonus_coins">;
    static callOutBonusCoinsStack_bonusCoinPanel_bonusCoinLabelPanel_bonusCoins<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutBonusCoinsStack_bonusCoinPanel_fillPanel1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutBonusCoinsStack_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutBonusCoinsStack_currencyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "currency_price_panel">;
    static callOutBonusCoinsStack_currencyPanel_currencyPricePanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "price" | "debug_price">;
    static callOutBonusCoinsStack_currencyPanel_currencyPricePanel_price<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutBonusCoinsStack_currencyPanel_currencyPricePanel_debugPrice<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutBonusCoinsStack_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static price<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static offerPanel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static callOutOfferPanel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static offerItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_panel" | "call_out_offer_panel">;
    static offerItem_offerPanel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static offerItem_callOutOfferPanel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static offerGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_item">;
    static offerGridItem_offerItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static notEnoughCoins<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static dividerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "divider">;
    static dividerPanel_divider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static coinPurchasePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "coin_purchase_grid" | "padding_1" | "padding_0" | "faq_button" | "divider_panel" | "not_enough_coins_panel">;
    static coinPurchasePanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static coinPurchasePanel_notEnoughCoinsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "not_enough_coins">;
    static coinPurchasePanel_notEnoughCoinsPanel_notEnoughCoins<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static coinPurchasePanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static coinPurchasePanel_coinPurchaseGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static coinPurchasePanel_dividerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static coinPurchasePanel_faqButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "coin_purchase_panel" | "loading_background" | "progress_loading_spinner" | "no_offers_panel">;
    static mainPanel_coinPurchasePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_loadingBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_progressLoadingSpinner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_noOffersPanel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleDescription<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleDescriptionLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleDescriptionCenter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleDescriptionRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleCoinsStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content_panel" | "padding_0" | "padding_2" | "currency_panel">;
    static bundleCoinsStack_contentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_0" | "text_stack" | "thumbnail_panel">;
    static bundleCoinsStack_contentPanel_textStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title_label" | "padding_1" | "description_section_factory">;
    static bundleCoinsStack_contentPanel_textStack_titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleCoinsStack_contentPanel_textStack_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleCoinsStack_contentPanel_textStack_descriptionSectionFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleCoinsStack_contentPanel_thumbnailPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "thumbnail">;
    static bundleCoinsStack_contentPanel_thumbnailPanel_thumbnail<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "coin_image">;
    static bundleCoinsStack_contentPanel_thumbnailPanel_thumbnail_coinImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleCoinsStack_contentPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleCoinsStack_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleCoinsStack_currencyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "currency_price_panel">;
    static bundleCoinsStack_currencyPanel_currencyPricePanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "price" | "debug_price">;
    static bundleCoinsStack_currencyPanel_currencyPricePanel_price<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleCoinsStack_currencyPanel_currencyPricePanel_debugPrice<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleCoinsStack_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleButtonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "call_out_background" | "bundle_coins_stack">;
    static bundleButtonContent_bundleCoinsStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleButtonContent_callOutBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "bevel">;
    static bundleButtonContent_callOutBackground_bevel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleOfferPanel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleOfferItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_panel">;
    static bundleOfferItem_offerPanel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleOfferGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_item">;
    static bundleOfferGridItem_offerItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleStackFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleFactoryPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bundle_stack_factory">;
    static bundleFactoryPanel_bundleStackFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "loading_background" | "progress_loading_spinner" | "bundle_stack_factory">;
    static bundlePanel_progressLoadingSpinner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundlePanel_loadingBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundlePanel_bundleStackFactory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CommandBlock extends Class {
    static plusIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pasteIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static plusButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static pasteButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconDropdownToggleButtonStateContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer" | "icon_panel" | "label_panel" | "arrow_panel">;
    static iconDropdownToggleButtonStateContent_iconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dropdown_contents_icon">;
    static iconDropdownToggleButtonStateContent_iconPanel_dropdownContentsIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconDropdownToggleButtonStateContent_spacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconDropdownToggleButtonStateContent_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static iconDropdownToggleButtonStateContent_labelPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconDropdownToggleButtonStateContent_arrowPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "arrow">;
    static iconDropdownToggleButtonStateContent_arrowPanel_arrow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlockMultilineTextEditBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlockTextEditBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlockHelperStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offset" | "text_">;
    static commandBlockHelperStack_offset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlockHelperStack_text_<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static previousCommandBlockInfoStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offset" | "start_label" | "offset1" | "start_label_dynamic_text">;
    static previousCommandBlockInfoStack_offset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static previousCommandBlockInfoStack_startLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static previousCommandBlockInfoStack_offset1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static previousCommandBlockInfoStack_startLabelDynamicText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static cancelButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static blocktypeDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blockTypePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static conditionDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static conditionModePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static redstoneDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static redstoneModePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftScrollPanelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content_stack_panel">;
    static leftScrollPanelContent_contentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "cancel" | "offset1" | "condition_mode_panel" | "redstone_mode_panel" | "offset2" | "offset3" | "block_type_mode_panel" | "offset4" | "offset5" | "offset_execute_on_first_tick" | "option_label_execute_on_first_tick" | "execute_on_first_tick_toggle" | "offset_tick_delay" | "option_label_tick_delay" | "tick_delay_text" | "offset7" | "offset8">;
    static leftScrollPanelContent_contentStackPanel_offset1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftScrollPanelContent_contentStackPanel_offset2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hover_note_text">;
    static leftScrollPanelContent_contentStackPanel_offset2_hoverNoteText<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftScrollPanelContent_contentStackPanel_offset3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftScrollPanelContent_contentStackPanel_blockTypeModePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftScrollPanelContent_contentStackPanel_offset4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftScrollPanelContent_contentStackPanel_conditionModePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftScrollPanelContent_contentStackPanel_offset5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftScrollPanelContent_contentStackPanel_redstoneModePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftScrollPanelContent_contentStackPanel_offsetExecuteOnFirstTick<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftScrollPanelContent_contentStackPanel_optionLabelExecuteOnFirstTick<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftScrollPanelContent_contentStackPanel_executeOnFirstTickToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftScrollPanelContent_contentStackPanel_offsetTickDelay<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftScrollPanelContent_contentStackPanel_optionLabelTickDelay<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftScrollPanelContent_contentStackPanel_tickDelayText<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftScrollPanelContent_contentStackPanel_offset7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftScrollPanelContent_contentStackPanel_cancel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftScrollPanelContent_contentStackPanel_offset8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftDividerContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left_scrolling_panel">;
    static leftDividerContent_leftScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "previous_redstone_mode_text" | "previous_block_type_text" | "offset4" | "offset5" | "command_block_commands_panel" | "switch_warning_panel" | "self_label" | "self_label_offset" | "nearest_player_label" | "nearest_player_label_offset" | "random_player_label" | "random_player_label_offset" | "all_players_label" | "all_players_label_offset" | "all_entities_label" | "all_entities_label_offset" | "nearest_label" | "nearest_label_offset" | "command_block_previous_output_panel" | "previous_conditional_mode_text">;
    static rightScrollPanelContent_commandBlockCommandsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer1" | "centering_panel" | "spacer2" | "centering_panel1">;
    static rightScrollPanelContent_commandBlockCommandsPanel_spacer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_commandBlockCommandsPanel_centeringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_label">;
    static rightScrollPanelContent_commandBlockCommandsPanel_centeringPanel_optionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_commandBlockCommandsPanel_spacer2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_commandBlockCommandsPanel_centeringPanel1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "command_block_commands_panel">;
    static rightScrollPanelContent_commandBlockCommandsPanel_centeringPanel1_commandBlockCommandsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offset" | "paste_button" | "plus_button">;
    static rightScrollPanelContent_commandBlockCommandsPanel_centeringPanel1_commandBlockCommandsPanel_offset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "command_block_commands_text">;
    static rightScrollPanelContent_commandBlockCommandsPanel_centeringPanel1_commandBlockCommandsPanel_offset_commandBlockCommandsText<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_commandBlockCommandsPanel_centeringPanel1_commandBlockCommandsPanel_pasteButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_commandBlockCommandsPanel_centeringPanel1_commandBlockCommandsPanel_plusButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_switchWarningPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "switch_warning_label">;
    static rightScrollPanelContent_switchWarningPanel_switchWarningLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_selfLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_selfLabelOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_nearestPlayerLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_nearestPlayerLabelOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_randomPlayerLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_randomPlayerLabelOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_allPlayersLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_allPlayersLabelOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_allEntitiesLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_allEntitiesLabelOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_nearestLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_nearestLabelOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_commandBlockPreviousOutputPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer" | "previous_output_label_stack_centering_panel" | "command_output_text_centering_panel">;
    static rightScrollPanelContent_commandBlockPreviousOutputPanel_previousOutputLabelStackCenteringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "previous_output_label_stack">;
    static rightScrollPanelContent_commandBlockPreviousOutputPanel_previousOutputLabelStackCenteringPanel_previousOutputLabelStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "option_label" | "show_output_toggle">;
    static rightScrollPanelContent_commandBlockPreviousOutputPanel_previousOutputLabelStackCenteringPanel_previousOutputLabelStack_showOutputToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_commandBlockPreviousOutputPanel_previousOutputLabelStackCenteringPanel_previousOutputLabelStack_optionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_commandBlockPreviousOutputPanel_spacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_commandBlockPreviousOutputPanel_commandOutputTextCenteringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "command_output_text">;
    static rightScrollPanelContent_commandBlockPreviousOutputPanel_commandOutputTextCenteringPanel_commandOutputText<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_previousBlockTypeText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_offset4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_previousConditionalModeText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_offset5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanelContent_previousRedstoneModeText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dividerContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left_side" | "right_side">;
    static dividerContent_leftSide<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dividerContent_rightSide<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlockScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content" | "title" | "background_divider" | "maximized_command_block_text">;
    static commandBlockScreenContent_backgroundDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bg_image" | "dialog_divider" | "header_buttons_stack_panel">;
    static commandBlockScreenContent_backgroundDivider_bgImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlockScreenContent_backgroundDivider_dialogDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlockScreenContent_backgroundDivider_headerButtonsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "paste_button" | "close_button_holder">;
    static commandBlockScreenContent_backgroundDivider_headerButtonsStackPanel_pasteButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlockScreenContent_backgroundDivider_headerButtonsStackPanel_closeButtonHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "close" | "minimize">;
    static commandBlockScreenContent_backgroundDivider_headerButtonsStackPanel_closeButtonHolder_close<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlockScreenContent_backgroundDivider_headerButtonsStackPanel_closeButtonHolder_minimize<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static commandBlockScreenContent_backgroundDivider_headerButtonsStackPanel_closeButtonHolder_minimize_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlockScreenContent_backgroundDivider_headerButtonsStackPanel_closeButtonHolder_minimize_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlockScreenContent_backgroundDivider_headerButtonsStackPanel_closeButtonHolder_minimize_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlockScreenContent_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlockScreenContent_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlockScreenContent_maximizedCommandBlockText<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightDividerContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "right_scrolling_panel">;
    static rightDividerContent_rightScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlockScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class ConfirmDeleteAccount extends Class {
    static horizontalDivider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image">;
    static imagePanel_image<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "image_panel" | "text_panel">;
    static headerPanel_imagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerPanel_textPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "header_text" | "padding_2" | "header_text_2">;
    static headerPanel_textPanel_headerText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerPanel_textPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerPanel_textPanel_headerText2<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "button_panel" | "body_content">;
    static dialogContent_bodyContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent_buttonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "confirm_delete_account_button" | "cancel_delete_account_button">;
    static dialogContent_buttonPanel_confirmDeleteAccountButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent_buttonPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent_buttonPanel_cancelDeleteAccountButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static confirmCheckbox<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "check_box_wrapper" | "label_wrapper">;
    static confirmCheckbox_checkBoxWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "check_box">;
    static confirmCheckbox_checkBoxWrapper_checkBox<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static confirmCheckbox_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static confirmCheckbox_labelWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static confirmCheckbox_labelWrapper_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionLabelPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "confirm_3" | "confirm_2" | "confirm_1" | "confirm_0" | "header_label_wrapper" | "divider_0" | "divider_1" | "divider_2" | "divider_3">;
    static descriptionLabelPanel_headerLabelWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionLabelPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionLabelPanel_divider0<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionLabelPanel_confirm0<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionLabelPanel_divider1<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionLabelPanel_confirm1<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionLabelPanel_divider2<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionLabelPanel_confirm2<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionLabelPanel_divider3<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionLabelPanel_confirm3<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static confirmDeleteAccountScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static confirmDeleteAccountScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "root_panel">;
    static confirmDeleteAccountScreenContent_rootPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dialog">;
    static confirmDeleteAccountScreenContent_rootPanel_dialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class ContentLog extends Class {
    static contentLogLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentLogGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content_log_background">;
    static contentLogGridItem_contentLogBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "content_log_text">;
    static contentLogGridItem_contentLogBackground_contentLogText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentLogPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack_panel">;
    static contentLogPanel_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class ContentLogHistory extends Class {
    static clipboardIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static clipboardIconWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack_panel">;
    static clipboardIconWrapper_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offset" | "icon_panel" | "label_panel">;
    static clipboardIconWrapper_stackPanel_iconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static clipboardIconWrapper_stackPanel_iconPanel_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static clipboardIconWrapper_stackPanel_offset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static clipboardIconWrapper_stackPanel_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static clipboardIconWrapper_stackPanel_labelPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static clipboardButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static clearIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static clearIconWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack_panel">;
    static clearIconWrapper_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offset" | "icon_panel" | "label_panel">;
    static clearIconWrapper_stackPanel_iconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static clearIconWrapper_stackPanel_iconPanel_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static clearIconWrapper_stackPanel_offset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static clearIconWrapper_stackPanel_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static clearIconWrapper_stackPanel_labelPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static clearButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalButtonStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "clipboard_button" | "clear_button">;
    static horizontalButtonStackPanel_clipboardButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalButtonStackPanel_clearButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentLogMessage<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentLogMessagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content_log_message">;
    static contentLogMessagePanel_contentLogMessage<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentLogMessagePanelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content_log_message_panel">;
    static contentLogMessagePanelPanel_contentLogMessagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static messagesStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static messagesScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "messages_scrolling_panel">;
    static mainStackPanel_messagesScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentLogHistoryPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content_log_history_dialog">;
    static contentLogHistoryPanel_contentLogHistoryDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentLogHistoryScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CrafterPocket extends Class {
    static genericLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label" | "header_background">;
    static headerPanel_headerBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerPanel_titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "x" | "inventory_header" | "container_header">;
    static headerArea_x<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerArea_inventoryHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerArea_containerHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelOutline<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static backgroundPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static inventoryPanel_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_panel">;
    static leftScreen_inventoryPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static crafterInputGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static crafterDisabledSlot<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static crafterDisabledSlot_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static crafterDisabledSlot_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static crafterDisabledSlot_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cellImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static crafterHighlightSlot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static crafterContainerSlotButtonPrototype<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static crafterHighlightSlotPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "highlight" | "white_border">;
    static crafterHighlightSlotPanel_highlight<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "hover_text">;
    static crafterHighlightSlotPanel_highlight_hoverText<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static crafterHighlightSlotPanel_whiteBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static crafterEnabledSlotTemplate<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static outputSlotHoverInfo<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "hover" | "output_slot" | "output_slot_border" | "output_count">;
    static outputSlotHoverInfo_hover<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static outputSlotHoverInfo_outputSlot<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static outputSlotHoverInfo_outputSlotBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static outputSlotHoverInfo_outputCount<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "root_panel" | "item_lock_notification_factory">;
    static panelCrafter_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "disabled_slot_0_button" | "disabled_slot_1_button" | "disabled_slot_2_button" | "disabled_slot_3_button" | "disabled_slot_4_button" | "disabled_slot_5_button" | "disabled_slot_6_button" | "disabled_slot_7_button" | "disabled_slot_8_button" | "redstone_screen_inventory" | "red_icon">;
    static panelCrafter_rootPanel_disabledSlot0Button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_disabledSlot1Button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_disabledSlot2Button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_disabledSlot3Button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_disabledSlot4Button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_disabledSlot5Button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_disabledSlot6Button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_disabledSlot7Button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_disabledSlot8Button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_redstoneScreenInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "crafting_grid" | "red_hold_icon" | "redstone_wire_line" | "crafter_output">;
    static panelCrafter_rootPanel_redstoneScreenInventory_craftingGrid<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "crafter_input_grid">;
    static panelCrafter_rootPanel_redstoneScreenInventory_craftingGrid_crafterInputGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_redstoneScreenInventory_redHoldIcon<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_redstoneScreenInventory_redstoneWireLine<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_redstoneScreenInventory_crafterOutput<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_redIcon<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScreenBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "right_screen_bg">;
    static rightScreen_rightScreenBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "inventory_panel">;
    static rightScreen_rightScreenBg_inventoryPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "container" | "header" | "flying_item_renderer" | "gamepad_cursor" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory" | "bg" | "inventory">;
    static panel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_bg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_inventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_container<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_gamepadCursor<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static crafter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CreateWorldUpsell extends Class {
    static worldIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkBanner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static greyBanner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkmark<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static largex<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsArtIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static newWorldButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static newRealmButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static removeTrialButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "icon_panel" | "label_panel">;
    static buttonContent_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonContent_iconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$button_icon">;
    static buttonContent_iconPanel_$buttonIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonContent_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonContent_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$button_label_panel">;
    static buttonContent_labelPanel_$buttonLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsButtonTextPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "new_realm_label" | "new_realm_trial_label">;
    static realmsButtonTextPanel_newRealmLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsButtonTextPanel_newRealmTrialLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static priceLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static newRealmLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static newRealmTrialLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static newWorldLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonAndPricePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "$button_control" | "price_label_panel">;
    static buttonAndPricePanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonAndPricePanel_priceLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "price">;
    static buttonAndPricePanel_priceLabelPanel_price<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonAndPricePanel_$buttonControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static borderShell<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "$panel_content">;
    static borderShell_$panelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headBannerPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static createNewRealmContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "head_banner_panel" | "realm_grid">;
    static createNewRealmContent_headBannerPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "realm_button_price">;
    static createNewRealmContent_headBannerPanel_realmButtonPrice<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createNewRealmContent_realmGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static createWorldUpsellGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "db" | "gb" | "gp">;
    static createWorldUpsellGridItem_db<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static createWorldUpsellGridItem_gb<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static createWorldUpsellGridItem_gp<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "upsell_text_panel">;
    static gridPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridPanel_upsellTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "upsell_label">;
    static gridPanel_upsellTextPanel_upsellLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static createNewWorldContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "head_banner_panel" | "world_grid">;
    static createNewWorldContent_headBannerPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "world_button_price">;
    static createNewWorldContent_headBannerPanel_worldButtonPrice<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createNewWorldContent_worldGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static newWorldOrRealmScroll<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createNewWorldOrRealmContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "world" | "realm_content">;
    static createNewWorldOrRealmContent_world<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static createNewWorldOrRealmContent_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createNewWorldOrRealmContent_realmContent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static newRealmScroll<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newRealmContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "new_realm_scroll" | "key_art_panel" | "padding_hack">;
    static newRealmContentPanel_keyArtPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_art_icon">;
    static newRealmContentPanel_keyArtPanel_realmsArtIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static newRealmContentPanel_paddingHack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newRealmContentPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newRealmContentPanel_newRealmScroll<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newRealmContentPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createRealmUpsellContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "remove_trial_button" | "realm_content">;
    static createRealmUpsellContent_realmContent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static createRealmUpsellContent_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createRealmUpsellContent_removeTrialButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static createRealmUpsellContent_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmContent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static createWorldUpsell<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static createWorldUpsellRealms<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static variableScreenSizePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dialog_0" | "dialog_1">;
    static variableScreenSizePanel_dialog0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static variableScreenSizePanel_dialog1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelRealmsOnly<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Credits extends Class {
    static fadeInImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static fadeOutImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skipPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "skip_button" | "exit_credits_input_panel">;
    static skipPanel_skipButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static skipPanel_exitCreditsInputPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creditsRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static creditsScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "credits_renderer" | "vignette_renderer" | "fade_in_image" | "credits_factory" | "whole_screen_input_panel">;
    static creditsScreenContent_creditsRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static creditsScreenContent_vignetteRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static creditsScreenContent_fadeInImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static creditsScreenContent_creditsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static creditsScreenContent_wholeScreenInputPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static creditsScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CsbPurchaseError extends Class {
    static csbPurchaseErrorScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseErrorScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel">;
    static purchaseErrorScreenContent_mainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseErrorModalMainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "text_panel" | "art_panel" | "error_panel">;
    static purchaseErrorModalMainPanel_textPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static purchaseErrorModalMainPanel_textPanel_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseErrorModalMainPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseErrorModalMainPanel_artPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "art">;
    static purchaseErrorModalMainPanel_artPanel_art<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseErrorModalMainPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseErrorModalMainPanel_errorPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "correlation_id" | "error_code">;
    static purchaseErrorModalMainPanel_errorPanel_errorCode<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseErrorModalMainPanel_errorPanel_correlationId<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseErrorModalBackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Csb extends Class {
    static csbPdpScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpgradeNoticeScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gradientImageStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "gradient">;
    static gradientImageStack_gradient<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gradientContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content_panel" | "gradient" | "particles">;
    static gradientContentPanel_gradient<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gradientContentPanel_particles<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gradientContentPanel_contentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbScreenMainPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbMainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "root_panel">;
    static csbMainPanel_rootPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel">;
    static csbMainPanel_rootPanel_mainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "selector_area" | "allow_divider_offset_panel" | "content_area">;
    static dialogContent_selectorArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent_allowDividerOffsetPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left_right_pane_divider">;
    static dialogContent_allowDividerOffsetPanel_leftRightPaneDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent_contentArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static selectorArea_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableSelectorAreaContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "focus_reset_input_panel" | "csb_toggle" | "content_toggle" | "faq_toggle" | "toggle_section_divider" | "buy_now_toggle" | "xbl_btn_panel">;
    static scrollableSelectorAreaContent_focusResetInputPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableSelectorAreaContent_csbToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableSelectorAreaContent_contentToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableSelectorAreaContent_faqToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableSelectorAreaContent_toggleSectionDivider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableSelectorAreaContent_buyNowToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableSelectorAreaContent_xblBtnPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "xbl_btn">;
    static scrollableSelectorAreaContent_xblBtnPanel_xblBtn<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionToggleBase<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabButtonText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleBase<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "toggle">;
    static toggleBase_toggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleBase_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyNowToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftRightPaneDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "control">;
    static contentArea_control<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel_csb">;
    static contentArea_control_scrollingPanelCsb<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalPadding4px<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionBase<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyNowContentSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content" | "vertical_padding">;
    static buyNowContentSection_verticalPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyNowContentSection_content<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static markdownBackgroundAnimated<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "csb_chevron">;
    static markdownBackgroundAnimated_csbChevron<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static markdownBackground<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "banner_panel" | "triangle_panel">;
    static markdownBackground_bannerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "banner">;
    static markdownBackground_bannerPanel_banner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "banner_stack_panel">;
    static markdownBackground_bannerPanel_banner_bannerStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "0">;
    static markdownBackground_bannerPanel_banner_bannerStackPanel_0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static markdownBackground_trianglePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "triangle">;
    static markdownBackground_trianglePanel_triangle<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static emptyLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fullWidthSectionDivider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CustomTemplates extends Class {
    static lockIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static templatesScrollContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static templatesScrollContent_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static templatesScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "templates_stack_panel">;
    static templatesScrollPanel_templatesStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "templates_item_grid">;
    static templatesScrollPanel_templatesStackPanel_templatesItemGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static templatesItemGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static templatesItem<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "template_item_button">;
    static templatesItem_templateItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "template_screenshot" | "template_text_panel" | "lock_panel">;
    static templateContentPanel_templateScreenshot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateContentPanel_templateTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateContentPanel_lockPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "lock_icon">;
    static templateContentPanel_lockPanel_lockIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateScreenshot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "picture">;
    static templateScreenshot_picture<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text_indent">;
    static templateTextPanel_textIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top_side" | "bottom_side">;
    static templateTextPanel_textIndent_topSide<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "template_name" | "download_text_label">;
    static templateTextPanel_textIndent_topSide_templateName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateTextPanel_textIndent_topSide_downloadTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateTextPanel_textIndent_bottomSide<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "template_version" | "template_description">;
    static templateTextPanel_textIndent_bottomSide_templateDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateTextPanel_textIndent_bottomSide_templateVersion<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateDownloadText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateListText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateVersion<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "templates_scroll_content">;
    static mainPanel_templatesScrollContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static customTemplatesScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static customTemplatesScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dialog">;
    static customTemplatesScreenContent_dialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class DayOneExperienceIntro extends Class {
    static paddingHorizontal<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paddingVertical<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label_text">;
    static labelPanel_labelText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static textPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_00" | "tab_content_description_panel" | "padding_01">;
    static textPanel_padding00<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textPanel_tabContentDescriptionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textPanel_padding01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static imagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dialog_image_with_border" | "focus_image">;
    static imagePanel_dialogImageWithBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static imagePanel_focusImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTabNavigationPanelLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "nav_padding_01" | "gamepad_helper_with_offset_left_bumper" | "nav_padding_02" | "welcome_navigation_tab" | "nav_padding_03" | "marketplace_navigation_tab" | "nav_padding_04" | "cross_platform_navigation_tab" | "nav_padding_05" | "realms_navigation_tab" | "nav_padding_06" | "villagers_navigation_tab" | "nav_padding_07" | "gamepad_helper_with_offset_right_bumper" | "nav_padding_08">;
    static tabbedTabNavigationPanelLayout_navPadding01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_gamepadHelperWithOffsetLeftBumper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_left_bumper">;
    static tabbedTabNavigationPanelLayout_gamepadHelperWithOffsetLeftBumper_gamepadHelperLeftBumper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_navPadding02<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_welcomeNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_navPadding03<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_marketplaceNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_navPadding04<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_crossPlatformNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_navPadding05<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_realmsNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_navPadding06<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_villagersNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_navPadding07<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_gamepadHelperWithOffsetRightBumper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_right_bumper">;
    static tabbedTabNavigationPanelLayout_gamepadHelperWithOffsetRightBumper_gamepadHelperRightBumper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_navPadding08<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabHeaderImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "welcome_tab_content" | "marketplace_tab_content" | "cross_platform_tab_content" | "realms_tab_content" | "villager_tab_content">;
    static tabHeaderImagePanel_welcomeTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabHeaderImagePanel_marketplaceTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabHeaderImagePanel_crossPlatformTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabHeaderImagePanel_realmsTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabHeaderImagePanel_villagerTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabContentPanelLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "welcome_tab_content" | "marketplace_tab_content" | "cross_platform_tab_content" | "realms_tab_content" | "villager_tab_content">;
    static tabbedTabContentPanelLayout_welcomeTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabContentPanelLayout_marketplaceTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabContentPanelLayout_crossPlatformTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabContentPanelLayout_realmsTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabContentPanelLayout_villagerTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTabHeaderImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "header_image">;
    static commonTabHeaderImagePanel_headerImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static commonTabContentPanel_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static welcomeTabHeaderImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static welcomeTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceTabHeaderImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static crossPlatformTabHeaderImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static crossPlatformTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsTabHeaderImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static villagerTabHeaderImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static villagerTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_4" | "padding_00" | "tab_header_image" | "tab_navigation_panel" | "tab_content_panel" | "continue_button_panel">;
    static tabPanel_tabHeaderImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabPanel_padding00<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabPanel_tabNavigationPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabPanel_tabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabPanel_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabPanel_continueButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "continue_button">;
    static tabPanel_continueButtonPanel_continueButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static dayOneExperienceIntroScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static dayOneExperienceIntroScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "welcome_dialog">;
    static dayOneExperienceIntroScreenContent_welcomeDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class DayOneExperience extends Class {
    static alphaScrollBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tipText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static tipArrowBase<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tipArrowLeft<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tipArrowRight<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static importTime<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsTipImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "arrows">;
    static skinsTipImage_arrows<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "right_arrow" | "left_arrow">;
    static skinsTipImage_arrows_rightArrow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsTipImage_arrows_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsTipImage_arrows_leftArrow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsTipTopText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsTipPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_text_sizer" | "image_sizer" | "bottom_text_sizer">;
    static skinsTipPanel_topTextSizer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "settings_and_skin_text" | "settings_text">;
    static skinsTipPanel_topTextSizer_settingsAndSkinText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsTipPanel_topTextSizer_settingsText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsTipPanel_imageSizer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image_section">;
    static skinsTipPanel_imageSizer_imageSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsTipPanel_bottomTextSizer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bottom_text">;
    static skinsTipPanel_bottomTextSizer_bottomText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinViewerPanelText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinViewerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "paper_doll_container" | "legacy_skin_loading_panel" | "bottom_skin_text">;
    static skinViewerPanel_paperDollContainer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "paper_doll">;
    static skinViewerPanel_paperDollContainer_paperDoll<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinViewerPanel_legacySkinLoadingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinViewerPanel_bottomSkinText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "current_skin_text" | "default_skin_text">;
    static skinViewerPanel_bottomSkinText_currentSkinText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinViewerPanel_bottomSkinText_defaultSkinText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinTipScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "primary_content" | "no_network_message">;
    static skinTipScreen_primaryContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "skin_viewer_panel" | "skins_tip_panel_container">;
    static skinTipScreen_primaryContent_skinViewerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "skin_viewer">;
    static skinTipScreen_primaryContent_skinViewerPanel_skinViewer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinTipScreen_primaryContent_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinTipScreen_primaryContent_skinsTipPanelContainer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "skins_tip_panel">;
    static skinTipScreen_primaryContent_skinsTipPanelContainer_background<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinTipScreen_primaryContent_skinsTipPanelContainer_skinsTipPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinTipScreen_noNetworkMessage<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldItem<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "header_button_panel">;
    static legacyWorldItem_headerButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldItemGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldPickerScrollingContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "skip_button" | "padding_1" | "padding_0" | "padding_2" | "loading_legacy_worlds_panel" | "world_item_grid">;
    static worldPickerScrollingContent_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldPickerScrollingContent_skipButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldPickerScrollingContent_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldPickerScrollingContent_loadingLegacyWorldsPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "padding" | "progress_loading_bars" | "loading_legacy_worlds_label">;
    static worldPickerScrollingContent_loadingLegacyWorldsPanel_loadingLegacyWorldsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldPickerScrollingContent_loadingLegacyWorldsPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldPickerScrollingContent_loadingLegacyWorldsPanel_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldPickerScrollingContent_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldPickerScrollingContent_worldItemGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldPickerContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static worldPickerContent_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedWorldsScreen<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "world_picker" | "import_time_container">;
    static advancedWorldsScreen_worldPicker<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedWorldsScreen_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedWorldsScreen_importTimeContainer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "import_time_label">;
    static advancedWorldsScreen_importTimeContainer_importTimeLabel<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static nextScreenButtonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "arrow_panel" | "loading_panel">;
    static nextScreenButtonContent_arrowPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image" | "label_panel">;
    static nextScreenButtonContent_arrowPanel_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static nextScreenButtonContent_arrowPanel_labelPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static nextScreenButtonContent_arrowPanel_image<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static nextScreenButtonContent_loadingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nextScreenButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static nextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "next_button">;
    static nextPanel_nextButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinTipScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "skin_tip_screen">;
    static skinTipScrollPanel_skinTipScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsImportScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "advanced_screen">;
    static worldsImportScrollPanel_advancedScreen<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinTipScrollContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static skinTipScrollContent_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldImportScrollContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static worldImportScrollContent_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultTabContentPanelLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "skin_tip_tab_content" | "world_import_tab_content">;
    static defaultTabContentPanelLayout_skinTipTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultTabContentPanelLayout_worldImportTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultWizardScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tab_content_panel">;
    static defaultWizardScreen_tabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static wizardScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static wizardScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "next_button" | "main_control">;
    static wizardScreenContent_mainControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static wizardScreenContent_nextButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Death extends Class {
    static aButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_a">;
    static aButtonPanel_gamepadHelperA<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static youDiedPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "you_died_label">;
    static youDiedPanel_youDiedLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static deathReasonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "death_reason_label">;
    static deathReasonPanel_deathReasonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static labelsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "fill_1" | "you_died" | "padd_1" | "death_reason" | "padd_2">;
    static labelsPanel_fill1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static labelsPanel_youDied<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static labelsPanel_padd1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static labelsPanel_deathReason<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static labelsPanel_padd2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padd_1" | "padd_0" | "respawn_button" | "main_menu_button" | "fill_2" | "select_button">;
    static buttonsPanel_padd0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonsPanel_respawnButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonsPanel_padd1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonsPanel_mainMenuButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonsPanel_fill2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonsPanel_selectButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static deathScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "death_screen_buttons_and_stuff" | "loading_label">;
    static deathScreenContent_deathScreenButtonsAndStuff<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "labels_panel" | "buttons_panel">;
    static deathScreenContent_deathScreenButtonsAndStuff_labelsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static deathScreenContent_deathScreenButtonsAndStuff_buttonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static deathScreenContent_loadingLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static backgroundGradient<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static deathScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class DebugScreen extends Class {
    static accessButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static specialRender<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "access_button" | "special_render">;
    static contentPanel_accessButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPanel_specialRender<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class DevConsole extends Class {
    static keyboardButtonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "keyboard_image">;
    static keyboardButtonContent_keyboardImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image">;
    static buttonContent_image<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static upArrow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static downArrow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sendButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static sentMessageUpButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static sentMessageDownButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "send_button" | "text_box" | "sent_message_up_button" | "sent_message_down_button">;
    static chatStackPanel_textBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatStackPanel_sendButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatStackPanel_sentMessageUpButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatStackPanel_sentMessageDownButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "messages_scrolling_panel" | "chat_stack_panel">;
    static mainStackPanel_messagesScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainStackPanel_chatStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainWithIntellisense<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "commands_panel" | "main_stack">;
    static mainWithIntellisense_mainStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainWithIntellisense_commandsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static devConsoleDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static devConsoleScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Disconnect extends Class {
    static disconnectScreenText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static disconnectText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static disconnectTitleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static titlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "disconnect_text" | "disconnect_title_text">;
    static titlePanel_disconnectTitleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static titlePanel_disconnectText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static menuButtonTemplate<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static continueButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkStoreButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static exitButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static okButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static openUriButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cancelButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "open_uri_button_panel" | "open_button_panel">;
    static buttonPanel_openUriButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "open_uri_button">;
    static buttonPanel_openUriButtonPanel_openUriButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel_openButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "ok_button">;
    static buttonPanel_openButtonPanel_okButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_a">;
    static gamepadHelpers_gamepadHelperA<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static disconnectScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static disconnectScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helpers" | "title_panel" | "$button_layout">;
    static disconnectScreenContent_titlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static disconnectScreenContent_gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static disconnectScreenContent_$buttonLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static spacingGap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsDisconnectScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsDisconnectButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "open_uri_button_panel" | "realm_buttons_panel">;
    static realmsDisconnectButtonPanel_openUriButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "open_uri_button">;
    static realmsDisconnectButtonPanel_openUriButtonPanel_openUriButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsDisconnectButtonPanel_realmButtonsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realm_buttons">;
    static realmsDisconnectButtonPanel_realmButtonsPanel_realmButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "check_store_button" | "exit_button" | "spacing_gap">;
    static realmsDisconnectButtonPanel_realmButtonsPanel_realmButtons_checkStoreButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsDisconnectButtonPanel_realmButtonsPanel_realmButtons_spacingGap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsDisconnectButtonPanel_realmButtonsPanel_realmButtons_exitButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWarningScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWarningButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "continue_button_panel" | "realms_warning_button_gap" | "cancel_button_panel">;
    static realmsWarningButtonPanel_continueButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "continue_button_stack_panel">;
    static realmsWarningButtonPanel_continueButtonPanel_continueButtonStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "continue_button" | "check_store_button" | "spacing_gap">;
    static realmsWarningButtonPanel_continueButtonPanel_continueButtonStackPanel_checkStoreButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWarningButtonPanel_continueButtonPanel_continueButtonStackPanel_spacingGap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWarningButtonPanel_continueButtonPanel_continueButtonStackPanel_continueButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWarningButtonPanel_realmsWarningButtonGap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWarningButtonPanel_cancelButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cancel_button">;
    static realmsWarningButtonPanel_cancelButtonPanel_cancelButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static openAccountSettingButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class DisplayLoggedError extends Class {
    static displayLoggedErrorScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static factoryPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "error_dialog_factory">;
    static factoryPanel_errorDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static displayLoggedErrorModal<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorMessageStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "error_message" | "error_count">;
    static errorMessageStack_errorMessage<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorMessageStack_errorCount<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputBlockingButtonBase<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static detailsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static dismissButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorDetailsModal<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static copyPathButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static hideErrorDetailsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorStackScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorControllerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "error_message" | "controller_button">;
    static errorControllerPanel_errorMessage<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorControllerPanel_controllerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "pressed" | "hover">;
    static errorControllerPanel_controllerButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorControllerPanel_controllerButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorBase<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "error_message" | "expand_button">;
    static errorBase_errorMessage<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorBase_expandButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorShort<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorExpanded<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class DiscoveryDialog extends Class {
    static serviceBodyLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static serviceButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static serviceButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static content<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "buttons" | "body_text" | "text_to_button_padding">;
    static content_bodyText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static content_textToButtonPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static content_buttons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serviceDialog<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static discoveryDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class EduFeatured extends Class {
    static featuredButtonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_label">;
    static featuredButtonContent_buttonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static featuredButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class EduQuitButton extends Class {
    static quitButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class PersonaEmote extends Class {
    static emoteWheelScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteWheelTouchZone<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteWheelScreenContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "root_panel" | "top_padding" | "bottom_padding" | "instruction_padding" | "instruction_panel" | "dressing_room_button_panel">;
    static emoteWheelScreenContent_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteWheelScreenContent_rootPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "emotes_panel">;
    static emoteWheelScreenContent_rootPanel_emotesPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteWheelScreenContent_instructionPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteWheelScreenContent_instructionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "instruction_background">;
    static emoteWheelScreenContent_instructionPanel_instructionBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "gamepad_instruction_stack" | "instruction_label_keyboard" | "instruction_label_touch">;
    static emoteWheelScreenContent_instructionPanel_instructionBackground_gamepadInstructionStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helpers" | "instruction_label_gamepad">;
    static emoteWheelScreenContent_instructionPanel_instructionBackground_gamepadInstructionStack_instructionLabelGamepad<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteWheelScreenContent_instructionPanel_instructionBackground_gamepadInstructionStack_gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_stack">;
    static emoteWheelScreenContent_instructionPanel_instructionBackground_gamepadInstructionStack_gamepadHelpers_gamepadHelperStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_start" | "gamepad_exit_panel">;
    static emoteWheelScreenContent_instructionPanel_instructionBackground_gamepadInstructionStack_gamepadHelpers_gamepadHelperStack_gamepadStart<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteWheelScreenContent_instructionPanel_instructionBackground_gamepadInstructionStack_gamepadHelpers_gamepadHelperStack_gamepadExitPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_exit">;
    static emoteWheelScreenContent_instructionPanel_instructionBackground_gamepadInstructionStack_gamepadHelpers_gamepadHelperStack_gamepadExitPanel_gamepadExit<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteWheelScreenContent_instructionPanel_instructionBackground_instructionLabelKeyboard<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteWheelScreenContent_instructionPanel_instructionBackground_instructionLabelTouch<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteWheelScreenContent_dressingRoomButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dressing_room_button">;
    static emoteWheelScreenContent_dressingRoomButtonPanel_dressingRoomButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteWheelScreenContent_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static swapEmoteButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Enchanting extends Class {
    static enchantingImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static lapisImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dustImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dustImageSelectable<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dustImageUnselectable<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dustTemplate<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dust_image_selectable" | "dust_image_unselectable">;
    static dustTemplate_dustImageSelectable<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dustTemplate_dustImageUnselectable<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dustPanel<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "a" | "b" | "c">;
    static dustPanel_a<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dustPanel_b<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dustPanel_c<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backgroundWithHoverText<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "hover_text">;
    static backgroundWithHoverText_hoverText<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkBackgroundWithHoverText<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static activeBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static activeBackgroundWithHoverText<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantRunes<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantCost<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static successRunes<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static failRunes<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static successCost<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static failCost<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static unselectableButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover" | "enchant_cost" | "rune_text">;
    static unselectableButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static unselectableButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static unselectableButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static unselectableButton_runeText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static unselectableButton_enchantCost<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectableButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover" | "enchant_cost" | "rune_text">;
    static selectableButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectableButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectableButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectableButton_runeText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectableButton_enchantCost<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dark_background" | "unselectable_button" | "selectable_button">;
    static enchantButtonPanel_darkBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantButtonPanel_unselectableButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantButtonPanel_selectableButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanelTopHalf<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "grid_panel" | "enchanting_label" | "enchanting_book_panel" | "item_grid" | "lapis_grid">;
    static enchantingPanelTopHalf_enchantingLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanelTopHalf_enchantingBookPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "enchanting_book">;
    static enchantingPanelTopHalf_enchantingBookPanel_enchantingBook<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanelTopHalf_itemGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "item_slot">;
    static enchantingPanelTopHalf_itemGrid_itemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanelTopHalf_lapisGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "lapis">;
    static enchantingPanelTopHalf_lapisGrid_lapis<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanelTopHalf_gridPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "indent" | "dust_panel" | "enchantments_grid">;
    static enchantingPanelTopHalf_gridPanel_indent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanelTopHalf_gridPanel_dustPanel<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanelTopHalf_gridPanel_enchantmentsGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "root_panel" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory">;
    static enchantingPanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_cursor" | "common_panel" | "inventory_selected_icon_button" | "enchanting_screen_inventory">;
    static enchantingPanel_rootPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanel_rootPanel_enchantingScreenInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_panel_bottom_half_with_label" | "hotbar_grid" | "inventory_take_progress_icon_button" | "enchanting_panel_top_half">;
    static enchantingPanel_rootPanel_enchantingScreenInventory_enchantingPanelTopHalf<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanel_rootPanel_enchantingScreenInventory_inventoryPanelBottomHalfWithLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanel_rootPanel_enchantingScreenInventory_hotbarGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanel_rootPanel_enchantingScreenInventory_inventoryTakeProgressIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanel_rootPanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanel_rootPanel_gamepadCursor<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class EnchantingPocket extends Class {
    static genericLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static backgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static inventoryContent_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lapisImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingSlotsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "input_slot" | "lapis_slot">;
    static enchantingSlotsPanel_inputSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingSlotsPanel_lapisSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantTextRunes<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static showHighlightedSlotControl<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static showHighlightedHoverSlotControl<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inactiveBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static unselectableButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover" | "enchant_cost">;
    static unselectableButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static unselectableButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static unselectableButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static unselectableButton_enchantCost<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectableButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover" | "enchant_cost">;
    static selectableButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectableButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectableButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectableButton_enchantCost<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "highlight" | "rune_text" | "unselectable_button" | "selectable_button" | "inactive_background" | "dust">;
    static enchantButtonPanel_inactiveBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantButtonPanel_unselectableButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantButtonPanel_selectableButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantButtonPanel_dust<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantButtonPanel_runeText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantButtonPanel_highlight<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantSelectionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "grid">;
    static enchantSelectionPanel_grid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "button1" | "button2" | "button3">;
    static enchantSelectionPanel_grid_button1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantSelectionPanel_grid_button2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantSelectionPanel_grid_button3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static confirmDefaultControl<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingConfirmButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover" | "arrow_active" | "arrow_inactive" | "input_item_renderer" | "output_item_renderer">;
    static enchantingConfirmButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingConfirmButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingConfirmButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingConfirmButton_arrowActive<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingConfirmButton_arrowInactive<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingConfirmButton_inputItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingConfirmButton_outputItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingConfirmPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "confirm" | "enchantment_hint_text">;
    static enchantingConfirmPanel_confirm<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingConfirmPanel_enchantmentHintText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingBookContentsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "enchanting_book" | "player_level_label" | "level_label">;
    static enchantingBookContentsPanel_enchantingBook<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingBookContentsPanel_playerLevelLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingBookContentsPanel_levelLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingBookPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "enchanting_slots_panel">;
    static enchantingBookPanel_enchantingSlotsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingSlotsAndSelection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad1" | "enchanting_slots_panel" | "enchant_selection_panel">;
    static enchantingSlotsAndSelection_enchantingSlotsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingSlotsAndSelection_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingSlotsAndSelection_enchantSelectionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingContentsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "fill1" | "pad1" | "fill2" | "enchanting_book_panel" | "enchanting_confirm_panel" | "enchanting_slots_and_selection" | "pad2">;
    static enchantingContentsPanel_fill1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingContentsPanel_enchantingBookPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingContentsPanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingContentsPanel_enchantingSlotsAndSelection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingContentsPanel_pad2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingContentsPanel_enchantingConfirmPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingContentsPanel_fill2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "panel" | "header_background" | "legacy_pocket_close_button">;
    static header_headerBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static header_legacyPocketCloseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static header_panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label">;
    static header_panel_titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryAndEnchantingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_half_screen" | "enchanting_half_screen">;
    static inventoryAndEnchantingPanel_inventoryHalfScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_content">;
    static inventoryAndEnchantingPanel_inventoryHalfScreen_inventoryContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryAndEnchantingPanel_enchantingHalfScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "enchanting_content">;
    static inventoryAndEnchantingPanel_enchantingHalfScreen_enchantingContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerAndContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "header" | "inventory_and_enchanting_panel">;
    static headerAndContentStackPanel_header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerAndContentStackPanel_inventoryAndEnchantingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item_text_label">;
    static errorTextPanel_itemTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "root_panel" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory" | "inventory_selected_icon_button" | "header_and_content_stack_panel" | "bg" | "hold_icon">;
    static enchantingPanel_bg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanel_headerAndContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanel_holdIcon<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingPanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Encyclopedia extends Class {
    static encyclopediaScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "how_to_play_selector_pane">;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "overworld_category" | "armor_button" | "armor_stand_button" | "banners_button" | "beacons_button" | "beds_button" | "blocks_button" | "book_and_quill_button" | "chests_button" | "conduits_button" | "dyes_button" | "farming_button" | "fireworks_button" | "fishing_button" | "jigsaw_blocks_button" | "mounts_button" | "navigation_button" | "nether_portals_button" | "pets_button" | "raids_button" | "ranching_button" | "scaffolding_button" | "structure_blocks_button" | "tools_button" | "transportation_button" | "trading_button" | "weapons_button" | "stands_and_tables_category" | "anvil_button" | "brewing_stand_button" | "cauldron_button" | "crafting_table_button" | "enchanting_table_button" | "furnace_button" | "loom_button" | "smithing_table_button" | "redstone_engineering_category" | "droppers_button" | "dispensers_button" | "hoppers_button" | "jukebox_button" | "redstone_button" | "the_end_dimension_category" | "the_end_button" | "eye_of_ender_button" | "end_cities_button" | "elytra_button" | "shulker_boxes_button" | "options_and_cheats_category" | "game_settings_button" | "difficulty_button" | "adventure_mode_button" | "creative_mode_button" | "commands_button" | "host_and_player_options_button" | "command_blocks_button" | "realms_category" | "realms_stories_button" | "marketplace_category" | "minecoins_button" | "addons_button" | "worlds_button" | "textures_button" | "skins_button" | "mashups_button">;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_overworldCategory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_armorButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_armorStandButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_bannersButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_beaconsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_bedsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_blocksButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_bookAndQuillButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_chestsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_conduitsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_dyesButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_farmingButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_fireworksButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_fishingButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_jigsawBlocksButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_mountsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_navigationButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_netherPortalsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_petsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_raidsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_ranchingButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_scaffoldingButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_structureBlocksButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_toolsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_transportationButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_tradingButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_weaponsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_standsAndTablesCategory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_anvilButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_brewingStandButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_cauldronButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_craftingTableButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_enchantingTableButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_furnaceButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_loomButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_smithingTableButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_redstoneEngineeringCategory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_droppersButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_dispensersButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_hoppersButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_jukeboxButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_redstoneButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_theEndDimensionCategory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_theEndButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_eyeOfEnderButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_endCitiesButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_elytraButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_shulkerBoxesButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_optionsAndCheatsCategory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_gameSettingsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_difficultyButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_adventureModeButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_creativeModeButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_commandsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_hostAndPlayerOptionsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_commandBlocksButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_realmsCategory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_realmsStoriesButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_marketplaceCategory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_minecoinsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_addonsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_worldsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_texturesButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_skinsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSelectorStackPanel_howToPlaySelectorPane_mashupsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "general_tips_sections">;
    static encyclopediaSectionContentPanels_generalTipsSections<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "section_contents_header" | "armor_section" | "armor_stand_section" | "banners_section" | "beacons_section" | "beds_section" | "blocks_section" | "book_and_quill_section" | "chests_section" | "conduits_section" | "dyes_section" | "farming_section" | "fireworks_section" | "fishing_section" | "jigsaw" | "mounts_section" | "navigation_section" | "nether_portals_section" | "pets_section" | "raids_section" | "ranching_section" | "scaffolding_section" | "structure_blocks_section" | "tools_section" | "transportation_section" | "trading_section" | "weapons_section" | "anvil_section" | "brewing_stand_section" | "cauldron_section" | "crafting_table_section" | "enchanting_table_section" | "furnace_section" | "loom_section" | "smithing_table_section" | "droppers_section" | "dispensers_section" | "hoppers_section" | "jukebox_section" | "redstone_section" | "the_end_section" | "eye_of_ender_section" | "end_cities_section" | "elytra_section" | "shulker_boxes_section" | "game_settings_section" | "difficulty_section" | "adventure_mode_section" | "creative_mode_section" | "commands_section" | "host_and_player_options_section" | "command_blocks_section" | "realms_stories_section" | "minecoins_section" | "addons_section" | "worlds_section" | "textures_section" | "skins_section" | "mashups_section" | "section_contents_footer">;
    static encyclopediaSectionContentPanels_generalTipsSections_sectionContentsHeader<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_armorSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_armorStandSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_bannersSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_beaconsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_bedsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_blocksSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_bookAndQuillSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_chestsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_conduitsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_dyesSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_farmingSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_fireworksSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_fishingSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_jigsaw<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_mountsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_navigationSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_netherPortalsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_petsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_raidsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_ranchingSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_scaffoldingSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_structureBlocksSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_toolsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_transportationSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_tradingSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_weaponsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_anvilSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_brewingStandSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_cauldronSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_craftingTableSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_enchantingTableSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_furnaceSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_loomSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_smithingTableSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_droppersSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_dispensersSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_hoppersSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_jukeboxSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_redstoneSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_theEndSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_eyeOfEnderSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_endCitiesSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_elytraSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_shulkerBoxesSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_gameSettingsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_difficultySection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_adventureModeSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_creativeModeSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_commandsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_hostAndPlayerOptionsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_commandBlocksSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_realmsStoriesSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_minecoinsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_addonsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_worldsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_texturesSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_skinsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_mashupsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSectionContentPanels_generalTipsSections_sectionContentsFooter<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static adventureModeButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static adventureModeSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "paragraph_1" | "paragraph_2">;
    static adventureModeSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static adventureModeSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static adventureModeSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4" | "paragraph_5">;
    static anvilSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static anvilSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4" | "paragraph_5_keyboard" | "paragraph_5_gamepad" | "paragraph_5a_touch" | "padding_5a_touch" | "paragraph_5b_touch" | "padding_5b_touch" | "paragraph_5c_touch" | "paragraph_5_rift_controller" | "paragraph_5_windowsmr_controller" | "padding_5" | "paragraph_6" | "padding_6" | "header_3" | "paragraph_7">;
    static armorSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection_paragraph5Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection_paragraph5Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection_paragraph5aTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection_padding5aTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection_paragraph5bTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection_padding5bTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection_paragraph5cTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection_paragraph5RiftController<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection_paragraph5WindowsmrController<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection_paragraph6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection_header3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorSection_paragraph7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorStandButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorStandSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "header_1" | "header_2" | "paragraph_5" | "header_3" | "paragraph_2_keyboard" | "paragraph_2_gamepad" | "paragraph_2_vr" | "paragraph_2_touch" | "paragraph_3_keyboard" | "paragraph_3_gamepad" | "paragraph_3_vr" | "paragraph_3_touch" | "paragraph_4_keyboard" | "paragraph_4_gamepad" | "paragraph_4_vr" | "paragraph_4_touch">;
    static armorStandSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorStandSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorStandSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorStandSection_paragraph2Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorStandSection_paragraph2Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorStandSection_paragraph2Vr<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorStandSection_paragraph2Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorStandSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorStandSection_paragraph3Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorStandSection_paragraph3Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorStandSection_paragraph3Vr<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorStandSection_paragraph3Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorStandSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorStandSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorStandSection_paragraph4Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorStandSection_paragraph4Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorStandSection_paragraph4Vr<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorStandSection_paragraph4Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorStandSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorStandSection_header3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorStandSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannersButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannersSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4" | "paragraph_5" | "padding_5" | "paragraph_6" | "padding_6" | "header_3" | "paragraph_7" | "padding_7" | "paragraph_8" | "padding_8" | "paragraph_9">;
    static bannersSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannersSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannersSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannersSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannersSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannersSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannersSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannersSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannersSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannersSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannersSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannersSection_paragraph6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannersSection_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannersSection_paragraph7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannersSection_padding7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannersSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannersSection_paragraph8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannersSection_padding8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannersSection_header3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannersSection_paragraph9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4" | "paragraph_5" | "padding_5" | "paragraph_6" | "padding_6" | "paragraph_7" | "padding_7" | "paragraph_8">;
    static beaconsSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconsSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconsSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconsSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconsSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconsSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconsSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconsSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconsSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconsSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconsSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconsSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconsSection_paragraph6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconsSection_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconsSection_paragraph7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconsSection_padding7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static beaconsSection_paragraph8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static conduitsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static conduitsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "paragraph_1" | "paragraph_2" | "header_1" | "paragraph_3" | "paragraph_4">;
    static conduitsSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static conduitsSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static conduitsSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static conduitsSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static conduitsSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static conduitsSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static conduitsSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static conduitsSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bedsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bedsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_3" | "paragraph_4" | "paragraph_5" | "paragraph_2_keyboard" | "paragraph_2_gamepad" | "paragraph_2_touch">;
    static bedsSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bedsSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bedsSection_paragraph2Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bedsSection_paragraph2Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bedsSection_paragraph2Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bedsSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bedsSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bedsSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bedsSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bedsSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bedsSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blocksButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blocksSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4" | "paragraph_5" | "padding_5" | "paragraph_6" | "padding_6" | "paragraph_7" | "padding_7" | "paragraph_8" | "padding_8" | "paragraph_9">;
    static blocksSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blocksSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blocksSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blocksSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blocksSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blocksSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blocksSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blocksSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blocksSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blocksSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blocksSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blocksSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blocksSection_paragraph6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blocksSection_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blocksSection_paragraph7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blocksSection_padding7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blocksSection_paragraph8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blocksSection_padding8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blocksSection_paragraph9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookAndQuillButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookAndQuillSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "paragraph_1">;
    static bookAndQuillSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4">;
    static brewingStandSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static brewingStandSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "header_1" | "header_2" | "paragraph_3" | "paragraph_5_keyboard" | "paragraph_5_gamepad" | "padding_5" | "paragraph_6" | "header_3" | "paragraph_2_keyboard" | "paragraph_2_gamepad" | "paragraph_2_vr" | "paragraph_2_touch" | "paragraph_4_keyboard" | "paragraph_4_gamepad" | "paragraph_4_vr" | "paragraph_4_touch" | "paragraph_5_vr" | "paragraph_5_touch">;
    static cauldronSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronSection_paragraph2Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronSection_paragraph2Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronSection_paragraph2Vr<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronSection_paragraph2Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronSection_paragraph4Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronSection_paragraph4Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronSection_paragraph4Vr<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronSection_paragraph4Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronSection_header3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronSection_paragraph5Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronSection_paragraph5Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronSection_paragraph5Vr<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronSection_paragraph5Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cauldronSection_paragraph6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chestsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chestsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "paragraph_2" | "paragraph_3" | "paragraph_1_keyboard" | "paragraph_1_gamepad" | "paragraph_1_touch">;
    static chestsSection_paragraph1Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chestsSection_paragraph1Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chestsSection_paragraph1Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chestsSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chestsSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chestsSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chestsSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlocksButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlocksSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "paragraph_3" | "paragraph_4" | "paragraph_5" | "padding_5" | "paragraph_6" | "padding_6" | "paragraph_7" | "padding_7" | "paragraph_8" | "paragraph_5_1" | "paragraph_5_2" | "paragraph_5_3" | "paragraph_6_1" | "paragraph_6_2" | "paragraph_7_1" | "paragraph_7_2">;
    static commandBlocksSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlocksSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlocksSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlocksSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlocksSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlocksSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlocksSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlocksSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlocksSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlocksSection_paragraph51<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlocksSection_paragraph52<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlocksSection_paragraph53<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlocksSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlocksSection_paragraph6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlocksSection_paragraph61<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlocksSection_paragraph62<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlocksSection_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlocksSection_paragraph7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlocksSection_paragraph71<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlocksSection_paragraph72<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlocksSection_padding7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandBlocksSection_paragraph8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "paragraph_1" | "paragraph_2">;
    static commandsSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandsSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandsSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingTableButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingTableSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "paragraph_1" | "paragraph_2_keyboard" | "paragraph_2_gamepad" | "paragraph_2_vr" | "paragraph_2_touch">;
    static craftingTableSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingTableSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingTableSection_paragraph2Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingTableSection_paragraph2Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingTableSection_paragraph2Vr<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingTableSection_paragraph2Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeModeButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeModeSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4_keyboard" | "paragraph_4_gamepad" | "paragraph_4a_touch_joystick_tap" | "paragraph_4a_touch_classic_dpad" | "paragraph_4a_touch_joystick_crosshair" | "padding_4a_touch" | "paragraph_4b_touch_joystick_tap" | "paragraph_4b_touch_classic_dpad" | "paragraph_4b_touch_joystick_crosshair">;
    static creativeModeSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeModeSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeModeSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeModeSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeModeSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeModeSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeModeSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeModeSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeModeSection_paragraph4Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeModeSection_paragraph4Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeModeSection_paragraph4aTouchJoystickTap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeModeSection_paragraph4aTouchClassicDpad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeModeSection_paragraph4aTouchJoystickCrosshair<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeModeSection_padding4aTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeModeSection_paragraph4bTouchJoystickTap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeModeSection_paragraph4bTouchClassicDpad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeModeSection_paragraph4bTouchJoystickCrosshair<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static difficultyButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static difficultySection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4" | "paragraph_5" | "header_3" | "header_4">;
    static difficultySection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static difficultySection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static difficultySection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static difficultySection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static difficultySection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static difficultySection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static difficultySection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static difficultySection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static difficultySection_header3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static difficultySection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static difficultySection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static difficultySection_header4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static difficultySection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dispensersButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dispensersSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "paragraph_1" | "header_1" | "paragraph_3" | "paragraph_4" | "paragraph_2_keyboard" | "paragraph_2_gamepad" | "paragraph_2_vr" | "paragraph_2_touch">;
    static dispensersSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dispensersSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dispensersSection_paragraph2Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dispensersSection_paragraph2Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dispensersSection_paragraph2Vr<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dispensersSection_paragraph2Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dispensersSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dispensersSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dispensersSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dispensersSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dispensersSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static droppersButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static droppersSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "paragraph_2" | "header_1" | "paragraph_1_keyboard" | "paragraph_1_gamepad" | "paragraph_1_touch" | "paragraph_1_vr">;
    static droppersSection_paragraph1Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static droppersSection_paragraph1Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static droppersSection_paragraph1Vr<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static droppersSection_paragraph1Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static droppersSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static droppersSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static droppersSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dyesButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dyesSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "paragraph_3" | "paragraph_4" | "paragraph_5" | "padding_5" | "paragraph_6" | "padding_6" | "paragraph_7">;
    static dyesSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dyesSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dyesSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dyesSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dyesSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dyesSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dyesSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dyesSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dyesSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dyesSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dyesSection_paragraph6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dyesSection_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dyesSection_paragraph7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static elytraButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static elytraSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_4" | "paragraph_5" | "padding_5" | "paragraph_6" | "paragraph_3_keyboard" | "paragraph_3_gamepad" | "paragraph_3_vr" | "paragraph_3_touch" | "paragraph_4_touch">;
    static elytraSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static elytraSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static elytraSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static elytraSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static elytraSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static elytraSection_paragraph3Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static elytraSection_paragraph3Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static elytraSection_paragraph3Vr<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static elytraSection_paragraph3Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static elytraSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static elytraSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static elytraSection_paragraph4Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static elytraSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static elytraSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static elytraSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static elytraSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static elytraSection_paragraph6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingTableButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingTableSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4" | "paragraph_5" | "header_3">;
    static enchantingTableSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingTableSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingTableSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingTableSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingTableSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingTableSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingTableSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingTableSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingTableSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingTableSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingTableSection_header3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantingTableSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static endCitiesButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static endCitiesSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "paragraph_1" | "paragraph_2">;
    static endCitiesSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static endCitiesSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static endCitiesSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eyeOfEnderButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eyeOfEnderSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "paragraph_1" | "paragraph_2">;
    static eyeOfEnderSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eyeOfEnderSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eyeOfEnderSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static farmingButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static farmingSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4" | "paragraph_5" | "padding_5" | "paragraph_6" | "padding_6" | "paragraph_7">;
    static farmingSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static farmingSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static farmingSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static farmingSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static farmingSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static farmingSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static farmingSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static farmingSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static farmingSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static farmingSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static farmingSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static farmingSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static farmingSection_paragraph6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static farmingSection_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static farmingSection_paragraph7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_4" | "paragraph_5" | "padding_5" | "paragraph_6" | "padding_6" | "header_3" | "paragraph_7" | "paragraph_3_keyboard" | "paragraph_3_gamepad" | "paragraph_3_touch" | "paragraph_6_1" | "paragraph_6_2" | "padding_5a" | "padding_5b" | "padding_5c" | "paragraph_6_3" | "padding_5d" | "paragraph_6_4" | "padding_5e" | "paragraph_6_5" | "padding_5f" | "paragraph_6_6">;
    static fireworksSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_paragraph3Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_paragraph3Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_paragraph3Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_paragraph6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_padding5a<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_paragraph61<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_padding5b<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_paragraph62<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_padding5c<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_paragraph63<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_padding5d<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_paragraph64<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_padding5e<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_paragraph65<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_padding5f<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_paragraph66<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_header3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fireworksSection_paragraph7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawBlocksButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawBlocksSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4" | "paragraph_5" | "padding_5" | "paragraph_6" | "padding_6" | "paragraph_7" | "padding_7" | "paragraph_8" | "padding_8" | "paragraph_9">;
    static jigsawBlocksSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawBlocksSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawBlocksSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawBlocksSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawBlocksSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawBlocksSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawBlocksSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawBlocksSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawBlocksSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawBlocksSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawBlocksSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawBlocksSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawBlocksSection_paragraph6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawBlocksSection_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawBlocksSection_paragraph7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawBlocksSection_padding7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawBlocksSection_paragraph8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawBlocksSection_padding8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawBlocksSection_paragraph9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fishingButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fishingSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "paragraph_1" | "header_1" | "header_2" | "paragraph_3" | "paragraph_2_keyboard" | "paragraph_2_gamepad" | "paragraph_2_touch" | "paragraph_4_keyboard" | "paragraph_4_gamepad" | "paragraph_4_vr" | "paragraph_4_touch">;
    static fishingSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fishingSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fishingSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fishingSection_paragraph2Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fishingSection_paragraph2Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fishingSection_paragraph2Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fishingSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fishingSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fishingSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fishingSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fishingSection_paragraph4Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fishingSection_paragraph4Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fishingSection_paragraph4Vr<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fishingSection_paragraph4Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "paragraph_1" | "paragraph_3" | "paragraph_2_keyboard" | "paragraph_2_gamepad" | "paragraph_2_vr" | "paragraph_2_touch">;
    static furnaceSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceSection_paragraph2Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceSection_paragraph2Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceSection_paragraph2Vr<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceSection_paragraph2Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4" | "paragraph_5" | "padding_5" | "paragraph_6" | "padding_6" | "paragraph_7" | "padding_7" | "paragraph_8" | "padding_8" | "paragraph_9" | "paragraph_7_1" | "paragraph_7_2" | "padding_9" | "paragraph_10" | "padding_10" | "paragraph_11" | "padding_11" | "paragraph_12" | "padding_12" | "paragraph_13" | "padding_13" | "paragraph_14" | "padding_14" | "paragraph_15" | "padding_15" | "paragraph_16" | "padding_16" | "paragraph_17">;
    static gameSettingsSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_paragraph6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_paragraph7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_paragraph71<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_paragraph72<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_padding7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_paragraph8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_padding8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_paragraph9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_padding9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_paragraph10<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_padding10<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_paragraph11<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_padding11<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_paragraph12<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_padding12<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_paragraph13<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_padding13<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_paragraph14<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_padding14<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_paragraph15<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_padding15<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_paragraph16<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_padding16<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSettingsSection_paragraph17<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hoppersButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hoppersSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "paragraph_1" | "paragraph_2" | "header_1" | "paragraph_3" | "paragraph_4">;
    static hoppersSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hoppersSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hoppersSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hoppersSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hoppersSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hoppersSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hoppersSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hoppersSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostAndPlayerOptionsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostAndPlayerOptionsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "paragraph_1_touch" | "paragraph_1_not_touch">;
    static hostAndPlayerOptionsSection_paragraph1NotTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostAndPlayerOptionsSection_paragraph1Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jukeboxButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jukeboxSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4" | "paragraph_5" | "padding_5" | "paragraph_6" | "padding_6" | "header_3" | "paragraph_7" | "paragraph_2_touch" | "padding_7" | "paragraph_8" | "paragraph_2_not_touch">;
    static jukeboxSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jukeboxSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jukeboxSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jukeboxSection_paragraph2NotTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jukeboxSection_paragraph2Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jukeboxSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jukeboxSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jukeboxSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jukeboxSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jukeboxSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jukeboxSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jukeboxSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jukeboxSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jukeboxSection_paragraph6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jukeboxSection_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jukeboxSection_header3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jukeboxSection_paragraph7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jukeboxSection_padding7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jukeboxSection_paragraph8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4">;
    static loomSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4" | "paragraph_5" | "padding_5" | "paragraph_6" | "header_3" | "header_4" | "header_5">;
    static realmsStoriesSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesSection_header3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesSection_header4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesSection_header5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesSection_paragraph6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4" | "paragraph_5" | "padding_5" | "paragraph_6" | "padding_6" | "paragraph_7" | "padding_7" | "paragraph_8" | "padding_8" | "paragraph_9">;
    static smithingTableSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableSection_paragraph6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableSection_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableSection_paragraph7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableSection_padding7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableSection_paragraph8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableSection_padding8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableSection_paragraph9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_4" | "paragraph_5" | "padding_5" | "paragraph_6" | "padding_6" | "header_3" | "paragraph_7" | "paragraph_3_touch" | "padding_7" | "paragraph_8" | "padding_8" | "paragraph_9" | "header_4" | "padding_9" | "paragraph_10" | "padding_10" | "paragraph_11" | "padding_11" | "paragraph_12" | "padding_12" | "paragraph_13" | "padding_13" | "paragraph_14" | "padding_14" | "padding_15" | "header_5" | "paragraph_3_not_touch" | "paragraph_6b" | "padding_6b" | "paragraph_15_not_touch" | "paragraph_15a_touch" | "paragraph_15b_touch">;
    static mountsSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_paragraph3NotTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_paragraph3Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_paragraph6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_paragraph6b<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_padding6b<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_paragraph7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_padding7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_paragraph8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_padding8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_header3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_paragraph9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_padding9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_paragraph10<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_padding10<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_paragraph11<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_padding11<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_paragraph12<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_padding12<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_header4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_paragraph13<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_padding13<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_paragraph14<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_padding14<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_header5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_paragraph15NotTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_paragraph15aTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_padding15<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mountsSection_paragraph15bTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navigationButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navigationSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4" | "paragraph_5" | "padding_5" | "paragraph_6" | "padding_6" | "header_3" | "paragraph_7" | "padding_7" | "paragraph_8" | "padding_8" | "paragraph_9" | "padding_9" | "paragraph_10">;
    static navigationSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navigationSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navigationSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navigationSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navigationSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navigationSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navigationSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navigationSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navigationSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navigationSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navigationSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navigationSection_paragraph6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navigationSection_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navigationSection_paragraph7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navigationSection_padding7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navigationSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navigationSection_paragraph8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navigationSection_padding8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navigationSection_paragraph9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navigationSection_padding9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navigationSection_header3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navigationSection_paragraph10<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static netherPortalsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static netherPortalsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "paragraph_1" | "paragraph_2" | "paragraph_3" | "image_1">;
    static netherPortalsSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static netherPortalsSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static netherPortalsSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static netherPortalsSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static netherPortalsSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static netherPortalsSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static netherPortalsSection_image1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static petsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static petsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4" | "header_3" | "paragraph_1_touch" | "header_4" | "paragraph_1_not_touch">;
    static petsSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static petsSection_paragraph1NotTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static petsSection_paragraph1Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static petsSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static petsSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static petsSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static petsSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static petsSection_header3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static petsSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static petsSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static petsSection_header4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static petsSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static raidsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static raidsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "paragraph_1" | "paragraph_2" | "header_1" | "paragraph_3">;
    static raidsSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static raidsSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static raidsSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static raidsSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static raidsSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static raidsSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ranchingButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ranchingSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4" | "paragraph_5">;
    static ranchingSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ranchingSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ranchingSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ranchingSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ranchingSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ranchingSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ranchingSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ranchingSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ranchingSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ranchingSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ranchingSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static redstoneButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static redstoneSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "paragraph_3" | "paragraph_4" | "paragraph_5">;
    static redstoneSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static redstoneSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static redstoneSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static redstoneSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static redstoneSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static redstoneSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static redstoneSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static redstoneSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static redstoneSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static redstoneSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scaffoldingButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scaffoldingSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "header_3" | "paragraph_1_keyboard" | "paragraph_1_gamepad" | "image_1" | "paragraph_1a_touch" | "padding_1a_touch" | "paragraph_1b_touch" | "padding_1b_touch" | "paragraph_1c_touch" | "paragraph_1_rift_controller" | "paragraph_1_windowsmr_controller">;
    static scaffoldingSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scaffoldingSection_paragraph1Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scaffoldingSection_paragraph1Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scaffoldingSection_paragraph1aTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scaffoldingSection_padding1aTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scaffoldingSection_paragraph1bTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scaffoldingSection_padding1bTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scaffoldingSection_paragraph1cTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scaffoldingSection_paragraph1RiftController<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scaffoldingSection_paragraph1WindowsmrController<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scaffoldingSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scaffoldingSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scaffoldingSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scaffoldingSection_image1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static scaffoldingSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scaffoldingSection_header3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scaffoldingSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scaffoldingSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4" | "paragraph_5" | "padding_5" | "paragraph_6" | "padding_6" | "header_3" | "paragraph_7" | "padding_7" | "paragraph_8" | "padding_8" | "header_4" | "padding_9" | "paragraph_10" | "padding_10" | "paragraph_11" | "padding_11" | "paragraph_12" | "padding_12" | "paragraph_13" | "padding_13" | "paragraph_14" | "padding_14" | "paragraph_15" | "padding_15" | "paragraph_16" | "padding_16" | "paragraph_17" | "header_5" | "paragraph_9_keyboard" | "paragraph_9_gamepad" | "paragraph_9_touch" | "header_6" | "header_7">;
    static structureBlocksSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_paragraph6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_paragraph7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_padding7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_header3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_paragraph8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_padding8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_paragraph9Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_paragraph9Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_paragraph9Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_padding9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_header4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_paragraph10<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_padding10<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_header5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_paragraph11<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_padding11<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_paragraph12<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_padding12<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_paragraph13<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_padding13<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_header6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_paragraph14<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_padding14<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_paragraph15<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_padding15<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_header7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_paragraph16<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_padding16<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureBlocksSection_paragraph17<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static shulkerBoxesButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static shulkerBoxesSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "paragraph_1">;
    static shulkerBoxesSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theEndButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theEndSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "paragraph_3" | "paragraph_4" | "paragraph_5">;
    static theEndSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theEndSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theEndSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theEndSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theEndSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theEndSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theEndSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theEndSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theEndSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theEndSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4" | "padding_5" | "padding_6" | "paragraph_7" | "padding_7" | "paragraph_8" | "padding_8" | "paragraph_9" | "paragraph_5_touch" | "padding_9" | "paragraph_10" | "padding_10" | "paragraph_11" | "padding_11" | "paragraph_12" | "paragraph_5_not_touch" | "paragraph_6_not_touch" | "paragraph_6_touch">;
    static toolsSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_paragraph5NotTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_paragraph5Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_paragraph6NotTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_paragraph6Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_paragraph7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_padding7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_paragraph8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_padding8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_paragraph9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_padding9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_paragraph10<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_padding10<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_paragraph11<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_padding11<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolsSection_paragraph12<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradingButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradingSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "paragraph_1" | "paragraph_2" | "header_1" | "paragraph_3" | "paragraph_4">;
    static tradingSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradingSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradingSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradingSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradingSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradingSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradingSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradingSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_4" | "paragraph_5_keyboard" | "paragraph_5_gamepad" | "paragraph_5a_touch" | "paragraph_5b_touch" | "paragraph_5c_touch" | "paragraph_2_touch" | "paragraph_3_keyboard" | "paragraph_3_gamepad" | "paragraph_4_touch" | "padding_5a" | "padding_5b" | "paragraph_3a_touch" | "padding_3a" | "paragraph_3b_touch" | "padding_3b" | "paragraph_3c_touch">;
    static transportationSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_paragraph2Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_paragraph3Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_paragraph3Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_paragraph3aTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_padding3a<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_paragraph3bTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_padding3b<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_paragraph3cTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_paragraph4Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_paragraph5Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_paragraph5Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_paragraph5aTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_padding5a<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_paragraph5bTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_padding5b<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transportationSection_paragraph5cTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "paragraph_1" | "header_1" | "header_2" | "paragraph_4" | "paragraph_5a_touch" | "padding_5a_touch" | "paragraph_5b_touch" | "padding_5b_touch" | "paragraph_5c_touch" | "padding_5" | "padding_6" | "header_3" | "paragraph_7" | "paragraph_2_touch" | "paragraph_3_touch" | "padding_7" | "header_4" | "paragraph_2_not_touch" | "header_5" | "paragraph_3_not_touch" | "paragraph_5_not_touch" | "paragraph_6_not_touch" | "paragraph_6_touch" | "padding_5c_touch" | "paragraph_5d_touch">;
    static weaponsSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_paragraph2NotTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_paragraph2Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_paragraph3NotTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_paragraph3Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_header3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_paragraph5NotTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_paragraph5aTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_padding5aTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_paragraph5bTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_padding5bTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_paragraph5cTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_padding5cTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_paragraph5dTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_header4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_paragraph6NotTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_paragraph6Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_padding7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_header5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static weaponsSection_paragraph7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static minecoinsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static minecoinsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "paragraph_1" | "paragraph_2" | "header_1" | "paragraph_3" | "get_minecoins_button">;
    static minecoinsSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static minecoinsSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static minecoinsSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static minecoinsSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static minecoinsSection_getMinecoinsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static minecoinsSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static minecoinsSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static minecoinsSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "paragraph_3" | "paragraph_4" | "paragraph_5" | "addons_faq_button">;
    static addonsSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonsSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonsSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonsSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonsSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonsSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonsSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonsSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonsSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonsSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonsSection_addonsFaqButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4" | "paragraph_5" | "padding_5" | "paragraph_6" | "padding_6" | "header_3" | "paragraph_7" | "padding_7" | "paragraph_8" | "padding_8" | "paragraph_9" | "header_4" | "padding_9" | "paragraph_10" | "padding_10" | "paragraph_11" | "padding_11" | "paragraph_12" | "padding_12">;
    static worldsSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_paragraph6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_paragraph7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_padding7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_paragraph8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_padding8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_header3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_paragraph9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_padding9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_paragraph10<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_padding10<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_header4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_paragraph11<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_padding11<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_paragraph12<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsSection_padding12<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static texturesButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static texturesSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "paragraph_1">;
    static texturesSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "paragraph_1">;
    static skinsSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mashupsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mashupsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "paragraph_1">;
    static mashupsSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class ExpandedSkinPack extends Class {
    static bannerFill<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static undoImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static lockIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "pressed" | "hover">;
    static skinButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinRotationArrows<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinViewerPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "skin_model_panel" | "lock">;
    static skinViewerPanel_skinModelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "skin_model">;
    static skinViewerPanel_skinModelPanel_skinModel<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinViewerPanel_lock<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static undoSkinButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static confirmSkinButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static stackItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static acceptSkinPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "stack_item_0" | "stack_item_1">;
    static acceptSkinPanel_stackItem0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "undo_btn">;
    static acceptSkinPanel_stackItem0_undoBtn<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static acceptSkinPanel_stackItem1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "confirm_button">;
    static acceptSkinPanel_stackItem1_confirmButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static previewSkinPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "preview" | "button_frame">;
    static previewSkinPanel_preview<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static previewSkinPanel_buttonFrame<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "stack_item_0" | "stack_item_1">;
    static previewSkinPanel_buttonFrame_stackItem0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "rotation">;
    static previewSkinPanel_buttonFrame_stackItem0_rotation<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static previewSkinPanel_buttonFrame_stackItem1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "accept">;
    static previewSkinPanel_buttonFrame_stackItem1_accept<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinModel<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_0" | "pack_info_panel" | "skin_grid_panel">;
    static scrollingContent_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContent_packInfoPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "pack_info_panel">;
    static scrollingContent_packInfoPanel_packInfoPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContent_skinGridPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "skins_grid">;
    static scrollingContent_skinGridPanel_skinsGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static packInfoPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pack_info_panel" | "lock_icon_panel">;
    static packInfoPanel_lockIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "lock_icon">;
    static packInfoPanel_lockIconPanel_lockIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static packInfoPanel_packInfoPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "creator_name" | "pack_name">;
    static packInfoPanel_packInfoPanel_packName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static packInfoPanel_packInfoPanel_creatorName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button" | "clip" | "lock">;
    static skinsGridItem_clip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "model">;
    static skinsGridItem_clip_model<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsGridItem_lock<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsGridItem_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectSkinButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static selectSkinButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectSkinButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectSkinButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static allSkinsContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "scrolling_frame">;
    static allSkinsContent_scrollingFrame<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "change_skin_scroll">;
    static allSkinsContent_scrollingFrame_changeSkinScroll<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static allSkinsFrame<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "all_skins_content">;
    static allSkinsFrame_allSkinsContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleBar<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "padding_2" | "fill_panel" | "skin_name_holder">;
    static titleBar_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleBar_fillPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_holder">;
    static titleBar_fillPanel_titleHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "change_skin_title">;
    static titleBar_fillPanel_titleHolder_changeSkinTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleBar_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleBar_skinNameHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "preview_skin_name">;
    static titleBar_skinNameHolder_previewSkinName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleBar_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title" | "selector_area" | "content_area" | "section_divider">;
    static content_title<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static content_selectorArea<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static content_contentArea<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static content_sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static expandedSkinPackScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPickerScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "container" | "bg">;
    static skinPickerScreenContent_bg<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPickerScreenContent_container<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static skinPickerScreenContent_container_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableSelectorAreaContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$selector_stack_panel">;
    static scrollableSelectorAreaContent_$selectorStackPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorArea<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "all_skins" | "inactive_modal_pane_fade">;
    static selectorArea_allSkins<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorArea_inactiveModalPaneFade<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentArea<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "preview_skin" | "inactive_modal_pane_fade">;
    static contentArea_previewSkin<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentArea_inactiveModalPaneFade<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class FeedCommon extends Class {
    static topBarGradient<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static smoothLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static shareLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static feedLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static returnLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static prevLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static nextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static deleteLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static reportToClubLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static reportToXboxLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static newPostHeaderText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static feedButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static returnButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static prevButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static prevPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "$direction_gamepad_button_helper" | "lab_panel">;
    static prevPanel_$directionGamepadButtonHelper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static prevPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static prevPanel_labPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "vert_pad" | "prevlab">;
    static prevPanel_labPanel_vertPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static prevPanel_labPanel_prevlab<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static nextButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static nextPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_2" | "$direction_gamepad_button_helper" | "lab_panel2">;
    static nextPanel_labPanel2<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "vert_pad2" | "nextlab">;
    static nextPanel_labPanel2_vertPad2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nextPanel_labPanel2_nextlab<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static nextPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nextPanel_$directionGamepadButtonHelper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static likeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static deleteButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static reportToXboxButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static reportToClubButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionsCloseButtonHighContrast<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "background" | "pressed" | "hover">;
    static optionsCloseButtonHighContrast_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionsCloseButtonHighContrast_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionsCloseButtonHighContrast_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionsCloseButtonHighContrast_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static shareButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static spacingGap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "platform_icon">;
    static platformIconPanel_platformIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountLinkImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountLinkIcon<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "account_link_image" | "space_01" | "space_02">;
    static accountLinkIcon_space01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountLinkIcon_accountLinkImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountLinkIcon_space02<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerPicBevel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static noFeedItemContent<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static shareTextBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static paginationPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "page_text" | "prev_button" | "next_button">;
    static paginationPanel_prevButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static paginationPanel_pageText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static paginationPanel_nextButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static paginationPanelGamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "page_text" | "next_panel" | "prev_panel">;
    static paginationPanelGamepad_prevPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paginationPanelGamepad_pageText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static paginationPanelGamepad_nextPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static likeImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static likeImageDefault<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static likeImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "like_image_default" | "like_image_instance">;
    static likeImagePanel_likeImageInstance<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static likeImagePanel_likeImageDefault<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static feedLikeContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "like_image_panel" | "like_label">;
    static feedLikeContentPanel_likeImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static feedLikeContentPanel_likeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static whiteBanner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionsIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static transparentBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static blackArrow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static fadedBackgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static unviewedPostBadge<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "unviewed_post_text">;
    static unviewedPostBadge_unviewedPostText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class FileUpload extends Class {
    static emptyProgressBarIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static fullProgressBarIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressBarNub<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressBarIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "empty_progress_bar_icon" | "progress_percent_panel">;
    static progressBarIcon_emptyProgressBarIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressBarIcon_progressPercentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "full_progress_bar_icon" | "progress_bar_nub">;
    static progressBarIcon_progressPercentPanel_fullProgressBarIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressBarIcon_progressPercentPanel_progressBarNub<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress" | "total">;
    static progressTextPanel_progress<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressTextPanel_total<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static messageTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "message_text">;
    static messageTextPanel_messageText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonCommon<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static letsGoButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cancelButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static continueButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static continueOrCancelButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cancel" | "continue">;
    static continueOrCancelButton_continue<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static continueOrCancelButton_cancel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static singleTitlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "center">;
    static singleTitlePanel_center<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static dualTitlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left" | "right">;
    static dualTitlePanel_left<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static dualTitlePanel_right<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static uploadTitlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "single_label" | "dual_label">;
    static uploadTitlePanel_singleLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uploadTitlePanel_dualLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack_panel_0" | "stack_panel_1">;
    static contentPanel_stackPanel0<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPanel_stackPanel1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "progress" | "message" | "description">;
    static contentStackPanel_message<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentStackPanel_description<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentStackPanel_progress<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "message">;
    static warningContentPanel_message<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "play" | "cancel" | "continue_cancel">;
    static buttonPanel_play<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel_cancel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel_continueCancel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fileUploadContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content" | "title_panel_content">;
    static fileUploadContent_titlePanelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fileUploadContent_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "buttons" | "background" | "content" | "title">;
    static fileUploadContent_content_background<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fileUploadContent_content_title<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fileUploadContent_content_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fileUploadContent_content_buttons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fileTransmissionScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Furnace extends Class {
    static flamePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flame_empty_image" | "flame_full_image">;
    static flamePanel_flameEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static flamePanel_flameFullImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceArrowEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceArrowFullImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static flameEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static flameFullImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceInputPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "panel">;
    static furnaceInputPanel_panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flame_panel" | "furnace_ingredient_panel" | "furnace_fuel_panel">;
    static furnaceInputPanel_panel_furnaceIngredientPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceInputPanel_panel_flamePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceInputPanel_panel_furnaceFuelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceIngredientPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "ingredient_item">;
    static furnaceIngredientPanel_ingredientItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceFuelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "fuel_item">;
    static furnaceFuelPanel_fuelItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceOutputPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "output_item">;
    static furnaceOutputPanel_outputItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanelTopHalf<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "input" | "output" | "furnace_arrow_empty_image" | "furnace_arrow_full_image" | "furnace_label">;
    static furnacePanelTopHalf_furnaceLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanelTopHalf_input<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanelTopHalf_furnaceArrowEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanelTopHalf_furnaceArrowFullImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanelTopHalf_output<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "root_panel" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory">;
    static furnacePanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_cursor" | "common_panel" | "inventory_selected_icon_button" | "furnace_screen_inventory">;
    static furnacePanel_rootPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanel_rootPanel_furnaceScreenInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_panel_bottom_half_with_label" | "hotbar_grid" | "inventory_take_progress_icon_button" | "furnace_panel_top_half">;
    static furnacePanel_rootPanel_furnaceScreenInventory_furnacePanelTopHalf<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanel_rootPanel_furnaceScreenInventory_inventoryPanelBottomHalfWithLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanel_rootPanel_furnaceScreenInventory_hotbarGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanel_rootPanel_furnaceScreenInventory_inventoryTakeProgressIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanel_rootPanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanel_rootPanel_gamepadCursor<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class FurnacePocket extends Class {
    static genericLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static backgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static emptyArrow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static fullArrow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static flameEmpty<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static flameFull<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static fuelLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "input_panel" | "empty_arrow" | "full_arrow" | "flame_empty" | "flame_full" | "fuel_panel" | "output_panel">;
    static furnaceContent_inputPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "ingredient_item" | "input_label">;
    static furnaceContent_inputPanel_inputLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceContent_inputPanel_ingredientItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceContent_flameEmpty<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceContent_flameFull<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceContent_fuelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "fuel_item" | "fuel_label">;
    static furnaceContent_fuelPanel_fuelLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceContent_fuelPanel_fuelItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceContent_emptyArrow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceContent_fullArrow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceContent_outputPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "output_item" | "result_label" | "result_name_label">;
    static furnaceContent_outputPanel_resultLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceContent_outputPanel_resultNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnaceContent_outputPanel_outputItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static inventoryContent_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "panel" | "header_background" | "close_button">;
    static header_headerBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static header_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static header_panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label">;
    static header_panel_titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryAndFurnacePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_half_screen" | "furnace_half_screen">;
    static inventoryAndFurnacePanel_inventoryHalfScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_content">;
    static inventoryAndFurnacePanel_inventoryHalfScreen_inventoryContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryAndFurnacePanel_furnaceHalfScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "furnace_content">;
    static inventoryAndFurnacePanel_furnaceHalfScreen_furnaceContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerAndContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "header" | "inventory_and_furnace_panel">;
    static headerAndContentStackPanel_header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerAndContentStackPanel_inventoryAndFurnacePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "root_panel" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory" | "inventory_selected_icon_button" | "header_and_content_stack_panel" | "bg" | "hold_icon">;
    static furnacePanel_bg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanel_headerAndContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanel_holdIcon<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static furnacePanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class GamepadDisconnected extends Class {
    static gamepadDisconnectedModal<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dialog_background_hollow_3">;
    static gamepadDisconnectedModal_dialogBackgroundHollow3<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "control">;
    static gamepadDisconnectedModal_dialogBackgroundHollow3_control<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "content_panel">;
    static gamepadDisconnectedModal_dialogBackgroundHollow3_control_contentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title" | "description" | "padding_1" | "padding_0">;
    static gamepadDisconnectedModal_dialogBackgroundHollow3_control_contentPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadDisconnectedModal_dialogBackgroundHollow3_control_contentPanel_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadDisconnectedModal_dialogBackgroundHollow3_control_contentPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadDisconnectedModal_dialogBackgroundHollow3_control_contentPanel_description<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadDisconnectedScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Gameplay extends Class {
    static bundleSelectedItemIcon<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleOpenIconBack<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleOpenIconFront<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleSelectedItemBackground<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bundle_selected_item_background_colour_green" | "bundle_selected_item_background_colour" | "bundle_selected_item_frame">;
    static bundleSelectedItemBackground_bundleSelectedItemBackgroundColourGreen<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleSelectedItemBackground_bundleSelectedItemBackgroundColour<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleSelectedItemBackground_bundleSelectedItemFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleSelectedItemPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bundle_selected_item_icon" | "bundle_open_icon_back" | "bundle_open_icon_front" | "bundle_selected_item_background" | "storage_bar">;
    static bundleSelectedItemPanel_bundleSelectedItemBackground<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleSelectedItemPanel_bundleOpenIconBack<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleSelectedItemPanel_bundleSelectedItemIcon<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleSelectedItemPanel_bundleOpenIconFront<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleSelectedItemPanel_storageBar<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleSlotPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bundle_selected_item_panel">;
    static bundleSlotPanel_bundleSelectedItemPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleCellImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background_panel" | "highlight_panel">;
    static bundleCellImage_backgroundPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item_background">;
    static bundleCellImage_backgroundPanel_itemBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleCellImage_highlightPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bundle_selected_item_background_colour_green" | "bundle_selected_item_background_border_white" | "bundle_selected_item_background_colour_blue">;
    static bundleCellImage_highlightPanel_bundleSelectedItemBackgroundColourGreen<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleCellImage_highlightPanel_bundleSelectedItemBackgroundBorderWhite<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleCellImage_highlightPanel_bundleSelectedItemBackgroundColourBlue<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltipSlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltipSlotPocket<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item_in_bundle_tooltip_pocket" | "more_hidden_items_label">;
    static bundleTooltipSlotPocket_itemInBundleTooltipPocket<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltipSlotPocket_moreHiddenItemsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltipSlotClassic<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item_in_bundle_tooltip_pocket" | "more_hidden_items_label">;
    static bundleTooltipSlotClassic_itemInBundleTooltipPocket<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltipSlotClassic_moreHiddenItemsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "header_stack" | "wrapper">;
    static bundleTooltip_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "empty_button" | "selected_item_tooltip">;
    static bundleTooltip_background_emptyButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static bundleTooltip_background_emptyButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltip_background_emptyButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltip_background_emptyButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltip_background_selectedItemTooltip<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "item_text_label">;
    static bundleTooltip_background_selectedItemTooltip_itemTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltip_headerStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "close_button" | "bundle_label">;
    static bundleTooltip_headerStack_bundleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltip_headerStack_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static bundleTooltip_headerStack_closeButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltip_headerStack_closeButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltip_headerStack_closeButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltip_wrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "vertical_layout_stack">;
    static bundleTooltip_wrapper_verticalLayoutStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "header_padding" | "horisontal_layout_stack">;
    static bundleTooltip_wrapper_verticalLayoutStack_headerPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltip_wrapper_verticalLayoutStack_horisontalLayoutStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_padding" | "body_stack">;
    static bundleTooltip_wrapper_verticalLayoutStack_horisontalLayoutStack_leftPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltip_wrapper_verticalLayoutStack_horisontalLayoutStack_bodyStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "item_grid" | "info_message" | "footer_panel">;
    static bundleTooltip_wrapper_verticalLayoutStack_horisontalLayoutStack_bodyStack_itemGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltip_wrapper_verticalLayoutStack_horisontalLayoutStack_bodyStack_infoMessage<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltip_wrapper_verticalLayoutStack_horisontalLayoutStack_bodyStack_footerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "weight_bar">;
    static bundleTooltip_wrapper_verticalLayoutStack_horisontalLayoutStack_bodyStack_footerPanel_weightBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "empty_message" | "weight_bar_fill" | "weight_bar_full" | "weight_bar_border">;
    static bundleTooltip_wrapper_verticalLayoutStack_horisontalLayoutStack_bodyStack_footerPanel_weightBar_emptyMessage<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltip_wrapper_verticalLayoutStack_horisontalLayoutStack_bodyStack_footerPanel_weightBar_weightBarFill<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltip_wrapper_verticalLayoutStack_horisontalLayoutStack_bodyStack_footerPanel_weightBar_weightBarFull<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "full_label">;
    static bundleTooltip_wrapper_verticalLayoutStack_horisontalLayoutStack_bodyStack_footerPanel_weightBar_weightBarFull_fullLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltip_wrapper_verticalLayoutStack_horisontalLayoutStack_bodyStack_footerPanel_weightBar_weightBarBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTouchTooltip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltipFactoryWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bundle_cursor_tooltip">;
    static bundleTooltipFactoryWrapper_bundleCursorTooltip<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleCursorTooltip<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, "tooltip">;
    static bundleCursorTooltip_tooltip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class GameTip extends Class {
    static gameTipAnimation<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameTipAnimationPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "animated_icon">;
    static gameTipAnimationPanel_animatedIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameTipLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameTipTextPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label" | "upper_padding" | "lower_padding">;
    static gameTipTextPanel_upperPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameTipTextPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameTipTextPanel_lowerPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameTipArrowImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameTipArrowPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tip_arrow">;
    static gameTipArrowPanel_tipArrow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameTipPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label" | "animated_panel" | "middle_padding" | "right_padding">;
    static gameTipPanel_animatedPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameTipPanel_middlePadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameTipPanel_label<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameTipPanel_rightPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameTipItemBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "arrow_panel" | "horizontal_container">;
    static gameTipItemBackground_horizontalContainer<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameTipItemBackground_arrowPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatStackGameTipPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_padding" | "game_tip_background">;
    static chatStackGameTipPanel_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatStackGameTipPanel_gameTipBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameTipFactory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameTipChatStackFactory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class GammaCalibration extends Class {
    static stackPanelCenteringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "child">;
    static stackPanelCenteringPanel_child<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imagePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "image" | "centering_panel">;
    static imagePanel_centeringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image_label">;
    static imagePanel_centeringPanel_imageLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static imagePanel_image<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "not_visible_image" | "barely_visible_image" | "easily_visible_image">;
    static imageStack_notVisibleImage<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageStack_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageStack_barelyVisibleImage<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageStack_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageStack_easilyVisibleImage<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static messagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "message_label">;
    static messagePanel_messageLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static calibrationSlider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "centering_panel" | "slider_control">;
    static calibrationSlider_centeringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "slider_label">;
    static calibrationSlider_centeringPanel_sliderLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static calibrationSlider_sliderControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "slider">;
    static calibrationSlider_sliderControl_slider<T extends Types = Types.Slider>(properties?: PropertiesType[T]): Modify<T, string>;
    static continueButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "continue_button_panel" | "hdr_message_panel" | "image_stack_panel" | "slider_panel">;
    static mainPanel_hdrMessagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_imageStackPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_sliderPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_continueButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gammaCalibrationScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class GatheringInfo extends Class {
    static gatheringInfoScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "header" | "left_panel" | "right_panel" | "section_divider">;
    static infoContent_header<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoContent_leftPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack">;
    static infoContent_leftPanel_stack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "gathering_id_label" | "event_image" | "pad_2" | "button_and_caption" | "pad_3" | "info_button" | "pad_4" | "gamepad_helper_panel" | "pad_fill" | "pad_5">;
    static infoContent_leftPanel_stack_eventImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoContent_leftPanel_stack_pad2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoContent_leftPanel_stack_buttonAndCaption<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "caption" | "action_button">;
    static infoContent_leftPanel_stack_buttonAndCaption_caption<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoContent_leftPanel_stack_buttonAndCaption_actionButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoContent_leftPanel_stack_pad3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoContent_leftPanel_stack_infoButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoContent_leftPanel_stack_pad4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoContent_leftPanel_stack_gamepadHelperPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helpers">;
    static infoContent_leftPanel_stack_gamepadHelperPanel_gamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoContent_leftPanel_stack_padFill<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoContent_leftPanel_stack_gatheringIdLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoContent_leftPanel_stack_pad5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoContent_sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoContent_rightPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scroll">;
    static infoContent_rightPanel_scroll<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanelContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "body" | "footer" | "title" | "body_image" | "pad" | "pad_2" | "sign_in_panel" | "sign_in_pad" | "qr_panel" | "qr_pad" | "pad_1">;
    static rightPanelContent_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanelContent_signInPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "text_stack" | "sign_in_image" | "horizontal_pad">;
    static rightPanelContent_signInPanel_signInImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanelContent_signInPanel_horizontalPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanelContent_signInPanel_textStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "sign_in_title" | "text_pad" | "sign_in_body">;
    static rightPanelContent_signInPanel_textStack_signInTitle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanelContent_signInPanel_textStack_textPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanelContent_signInPanel_textStack_signInBody<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanelContent_signInPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanelContent_qrPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "text_stack" | "horizontal_pad" | "qr_background">;
    static rightPanelContent_qrPanel_qrBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "qr_image">;
    static rightPanelContent_qrPanel_qrBackground_qrImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanelContent_qrPanel_horizontalPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanelContent_qrPanel_textStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "text_pad" | "qr_title" | "qr_body">;
    static rightPanelContent_qrPanel_textStack_qrTitle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanelContent_qrPanel_textStack_textPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanelContent_qrPanel_textStack_qrBody<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanelContent_qrPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanelContent_title<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanelContent_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanelContent_body<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanelContent_pad2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanelContent_bodyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanelContent_footer<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ttsLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ttsLabelTitle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static signInTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static signInBody<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static qrTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static qrBody<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static titlePanel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bodyPanel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_a" | "gamepad_helper_b">;
    static gamepadHelpers_gamepadHelperA<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers_gamepadHelperB<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Globalpause extends Class {
    static message<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static quitButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static globalpauseScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static pauseScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "message" | "quit_button" | "transparentFill">;
    static pauseScreenContent_transparentFill<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pauseScreenContent_message<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static pauseScreenContent_quitButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Grindstone extends Class {
    static titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static crossOutIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstoneOutputSlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstoneItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "container_item">;
    static grindstoneItemSlot_containerItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstoneMiddlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "input_item_slot" | "additional_item_slot">;
    static grindstoneMiddlePanel_inputItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstoneMiddlePanel_additionalItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstoneSlotsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "yields" | "result_item_slot" | "grindstone_middle_panel">;
    static grindstoneSlotsPanel_grindstoneMiddlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstoneSlotsPanel_yields<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cross_out_icon" | "arrow_icon">;
    static grindstoneSlotsPanel_yields_arrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstoneSlotsPanel_yields_crossOutIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstoneSlotsPanel_resultItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label" | "grindstone_slots_panel">;
    static topHalfPanel_titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfPanel_grindstoneSlotsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstonePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "root_panel" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory">;
    static grindstonePanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstonePanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstonePanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstonePanel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_cursor" | "common_panel" | "inventory_selected_icon_button" | "grindstone_screen_inventory">;
    static grindstonePanel_rootPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstonePanel_rootPanel_grindstoneScreenInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top_half_panel" | "inventory_panel_bottom_half_with_label" | "hotbar_grid" | "inventory_take_progress_icon_button">;
    static grindstonePanel_rootPanel_grindstoneScreenInventory_topHalfPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstonePanel_rootPanel_grindstoneScreenInventory_inventoryPanelBottomHalfWithLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstonePanel_rootPanel_grindstoneScreenInventory_hotbarGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstonePanel_rootPanel_grindstoneScreenInventory_inventoryTakeProgressIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstonePanel_rootPanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstonePanel_rootPanel_gamepadCursor<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstonePanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstoneScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class GrindstonePocket extends Class {
    static backgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static repairTitleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstoneMiddlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "input_slot" | "additional_slot">;
    static grindstoneMiddlePanel_inputSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstoneMiddlePanel_additionalSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "result_slot" | "arrow" | "grindstone_middle_panel">;
    static slotsPanel_grindstoneMiddlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel_arrow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "cross_out">;
    static slotsPanel_arrow_crossOut<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel_resultSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstoneContentsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "slots_panel" | "repair_title_label">;
    static grindstoneContentsPanel_repairTitleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstoneContentsPanel_slotsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static inventoryContent_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "panel" | "header_background" | "legacy_pocket_close_button">;
    static header_headerBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static header_legacyPocketCloseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static header_panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label">;
    static header_panel_titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryAndGrindstonePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_half_screen" | "grindstone_half_screen">;
    static inventoryAndGrindstonePanel_inventoryHalfScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_content">;
    static inventoryAndGrindstonePanel_inventoryHalfScreen_inventoryContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryAndGrindstonePanel_grindstoneHalfScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "grindstone_content">;
    static inventoryAndGrindstonePanel_grindstoneHalfScreen_grindstoneContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerAndContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "header" | "inventory_and_grindstone_panel">;
    static headerAndContentStackPanel_header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerAndContentStackPanel_inventoryAndGrindstonePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstonePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "root_panel" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory" | "inventory_selected_icon_button" | "header_and_content_stack_panel" | "bg" | "hold_icon">;
    static grindstonePanel_bg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstonePanel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstonePanel_headerAndContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstonePanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstonePanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstonePanel_holdIcon<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstonePanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstonePanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static grindstonePanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class HolographicPostrenderScreen extends Class {
    static specialRender<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static holographicPostrenderScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Horse extends Class {
    static rendererBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static overlayImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static saddleImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static carpetImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static horseLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static equipGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static invGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static invBgPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cell_image">;
    static invBgPanel_cellImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static equipPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "equip_grid" | "saddle" | "armor_0" | "carpet_0" | "armor_1" | "carpet_1">;
    static equipPanel_equipGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static equipPanel_saddle<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static equipPanel_armor0<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static equipPanel_carpet0<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static equipPanel_armor1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static equipPanel_carpet1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static invPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inv_grid" | "inv_bg_panel">;
    static invPanel_invBgPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static invPanel_invGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static horseRenderer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "renderer_bg" | "horse_custom_panel">;
    static horseRenderer_rendererBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static horseRenderer_horseCustomPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "horse_custom">;
    static horseRenderer_horseCustomPanel_horseCustom<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "root_panel" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory">;
    static horsePanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_cursor" | "renderer" | "common_panel" | "inventory_selected_icon_button" | "inventory_panel_bottom_half_with_label" | "hotbar_grid_template" | "inv_panel" | "horse_section_label" | "equipment">;
    static horsePanel_rootPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_rootPanel_horseSectionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_rootPanel_invPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_rootPanel_equipment<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_rootPanel_renderer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_rootPanel_inventoryPanelBottomHalfWithLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_rootPanel_hotbarGridTemplate<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_rootPanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_rootPanel_gamepadCursor<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static horseScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class HorsePocket extends Class {
    static horsePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "gamepad_cursor" | "gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory" | "inventory_selected_icon_button" | "base_panel">;
    static horsePanel_gamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_gamepadCursor<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_basePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "root_panel" | "bg" | "hold_icon" | "close_button" | "inventory" | "equipment" | "interactive_tabs" | "chest_tab" | "renderer_tab">;
    static horsePanel_basePanel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_basePanel_holdIcon<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_basePanel_bg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_basePanel_interactiveTabs<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_basePanel_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_basePanel_inventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_basePanel_equipment<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_basePanel_chestTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "chest" | "visual_tabs_chest">;
    static horsePanel_basePanel_chestTab_visualTabsChest<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_basePanel_chestTab_chest<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_basePanel_rendererTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "renderer" | "visual_tabs_equip">;
    static horsePanel_basePanel_rendererTab_visualTabsEquip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_basePanel_rendererTab_renderer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horsePanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static backgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static rendererBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static saddleImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static carpetImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelOutline<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonDefault<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonPressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static closeButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static chestGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseGridPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel" | "panel_outline" | "dark_bg">;
    static baseGridPanel_panelOutline<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseGridPanel_darkBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseGridPanel_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chestPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static halfScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static middleScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static halfScreenInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_panel">;
    static halfScreenInventory_inventoryPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static halfScreenChest<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "chest_panel">;
    static halfScreenChest_chestPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horseRenderer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "horse_custom">;
    static horseRenderer_horseCustom<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static halfScreenRenderer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "renderer_bg" | "horse_custom_panel" | "camel_custom_panel">;
    static halfScreenRenderer_rendererBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static halfScreenRenderer_horseCustomPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static halfScreenRenderer_camelCustomPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static equipItemPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "equip_container_item">;
    static equipItemPanel_equipContainerItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static equipGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static equipMiddleScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "equip_grid_panel">;
    static equipMiddleScreen_equipGridPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offset" | "armor_image" | "carpet_image" | "equip_grid" | "centered_0" | "centered_1" | "centered_2">;
    static equipMiddleScreen_equipGridPanel_equipGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static equipMiddleScreen_equipGridPanel_centered0<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static equipMiddleScreen_equipGridPanel_offset<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static equipMiddleScreen_equipGridPanel_centered1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static equipMiddleScreen_equipGridPanel_centered2<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static equipMiddleScreen_equipGridPanel_armorImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static equipMiddleScreen_equipGridPanel_carpetImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static horseScreenTabToggle<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static interactiveTabs<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "renderer_tab_interactive" | "chest_tab_interactive">;
    static interactiveTabs_rendererTabInteractive<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static interactiveTabs_chestTabInteractive<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabFront<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabBack<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeTab<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemIconRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static saddleIconFront<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static chestIconFront<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static visualTabsEquip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "chest" | "close_tab" | "equip">;
    static visualTabsEquip_closeTab<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "nodrop_zone">;
    static visualTabsEquip_closeTab_nodropZone<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static visualTabsEquip_chest<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "chest_icon">;
    static visualTabsEquip_chest_chestIcon<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static visualTabsEquip_equip<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "equip_icon">;
    static visualTabsEquip_equip_equipIcon<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static visualTabsChest<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "chest" | "close_tab" | "equip">;
    static visualTabsChest_closeTab<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static visualTabsChest_chest<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "chest_icon">;
    static visualTabsChest_chest_chestIcon<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static visualTabsChest_equip<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "equip_icon">;
    static visualTabsChest_equip_equipIcon<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class HostOptions extends Class {
    static buttonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "host_image">;
    static hostImagePanel_hostImage<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostGlyphPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableSelectorArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostMainButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "scrollable_tab">;
    static scrollingPanel_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingPanel_scrollableTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image" | "button_label">;
    static buttonContent_buttonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonContent_image<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainLightButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainDarkButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostSubCommandGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "host_option_banner">;
    static hostSubCommandGridItem_hostOptionBanner<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static returnFromSubCommandButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerPicPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "player_gamer_pic" | "player_local_icon">;
    static playerPicPanel_playerGamerPic<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerPicPanel_playerLocalIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "player_gamertag" | "platform_icon" | "player_pic_panel">;
    static playerButtonContent_playerPicPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerButtonContent_playerGamertag<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerButtonContent_platformIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "player_banner">;
    static playerGridItem_playerBanner<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostFriendsTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "players_grid">;
    static hostFriendsTab_playersGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostTeleportGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "host_option_toggle" | "host_option_button">;
    static hostTeleportGridItem_hostOptionToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostTeleportGridItem_hostOptionButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostTeleportButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "return" | "sub_tab">;
    static hostTeleportButtons_return<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostTeleportButtons_subTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "host_main_grid">;
    static hostTeleportButtons_subTab_hostMainGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostTeleportPlayerListButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "toggle">;
    static hostTeleportPlayerListButtons_toggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "host_time_panel">;
    static hostTeleportPlayerListButtons_toggle_hostTimePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostTeleportPlayerButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostTimeButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "return" | "sub_tab">;
    static hostTimeButtons_return<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostTimeButtons_subTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolli_scrolli_ravioli">;
    static hostTimeButtons_subTab_scrolliScrolliRavioli<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostWeatherButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "return" | "sub_tab">;
    static hostWeatherButtons_return<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostWeatherButtons_subTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "host_main_grid">;
    static hostWeatherButtons_subTab_hostMainGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostMenuGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "host_option_banner">;
    static hostMenuGridItem_hostOptionBanner<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostMainButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "host_main_grid">;
    static hostMainButtons_hostMainGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "host_main_panel" | "host_time_panel" | "host_teleport_panel" | "host_teleport_player_panel" | "host_weather_panel">;
    static hostPanel_hostMainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostPanel_hostTeleportPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostPanel_hostTeleportPlayerPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostPanel_hostTimePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hostPanel_hostWeatherPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class HowToPlayCommon extends Class {
    static dynamicDialogScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static topBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightTextButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static actionButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static topicCategory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top_padding" | "category_text">;
    static topicCategory_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topicCategory_categoryText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleButtonControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tab_button_text">;
    static toggleButtonControl_tabButtonText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphButtonControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tab_button_text" | "glyph">;
    static glyphButtonControl_tabButtonText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphButtonControl_glyph<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionToggleButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "section_toggle_button">;
    static sectionToggleButton_sectionToggleButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduSectionToggleButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smallPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static largePadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentsHeader<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentsFooter<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainSections<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static splitscreenOnlyContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "0">;
    static splitscreenOnlyContent_0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ttsFocusBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerTtsFocusBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "focus_border" | "header_label">;
    static headerBackground_headerLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerBackground_focusBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "header">;
    static header_header<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static paragraphPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paragraphLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static paragraphTtsFocusBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static paragraph<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label" | "focus_border">;
    static paragraph_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static paragraph_focusBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static paragraphWithIcons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label" | "focus_border">;
    static paragraphWithIcons_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static paragraphWithIcons_focusBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputConditionalParagraph<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputConditionalParagraphWithIcons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paragraphKeyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paragraphGamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paragraphGamepadNoIcons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paragraphRiftController<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paragraphWindowsmrController<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paragraphVr<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paragraphTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paragraphTouchClassicDpadSpacing<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paragraphTouchNoIcons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paragraphTouchJoystickTap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paragraphTouchClassicDpad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paragraphTouchJoystickCrosshair<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paragraphNotTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static image<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlayHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top_bar">;
    static howToPlayHeader_topBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "back_button" | "how_to_play_title" | "gamepad_bumper_helpers">;
    static howToPlayHeader_topBar_backButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlayHeader_topBar_howToPlayTitle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlayHeader_topBar_gamepadBumperHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlayContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "container" | "header">;
    static howToPlayContent_header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlayContent_container<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$dialog_content">;
    static howToPlayContent_container_$dialogContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "selector_area" | "content_area" | "section_divider">;
    static dialogContent_selectorArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent_contentArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent_sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableSelectorAreaContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$selector_stack_panel">;
    static scrollableSelectorAreaContent_$selectorStackPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static selectorArea_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentAreaWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content_area">;
    static contentAreaWrapper_contentArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "control">;
    static contentArea_control<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static contentArea_control_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenBase<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadBumperHelperDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadBumperHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "gamepad_helper_left_bumper" | "gamepad_helper_right_bumper">;
    static gamepadBumperHelpers_gamepadHelperLeftBumper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadBumperHelpers_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadBumperHelpers_gamepadHelperRightBumper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class HowToPlay extends Class {
    static howToPlayScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "how_to_play_selector_pane">;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "getting_started_category" | "moving_around_button" | "gathering_resources_button" | "selecting_items_button" | "placing_blocks_button" | "inventory_button" | "preparing_for_the_night_category" | "your_first_craft_button" | "recipe_book_button" | "the_crafting_table_button" | "crafting_a_tool_button" | "mining_button" | "surviving_the_first_night_category" | "nightfall_new_button" | "building_a_shelter_button" | "death_and_respawn_button" | "getting_settled_category" | "food_button" | "beds_new_button" | "improved_tools_button" | "education_category" | "world_builder_button" | "permission_blocks_button" | "chalkboard_button" | "chemistry_button" | "npc_button" | "camera_button" | "portfolio_button" | "classroom_mode_button" | "code_builder_button" | "playing_together_button" | "encyclopedia_button">;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_gettingStartedCategory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_movingAroundButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_gatheringResourcesButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_selectingItemsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_placingBlocksButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_inventoryButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_preparingForTheNightCategory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_yourFirstCraftButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_recipeBookButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_theCraftingTableButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_craftingAToolButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_miningButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_survivingTheFirstNightCategory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_nightfallNewButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_buildingAShelterButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_deathAndRespawnButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_gettingSettledCategory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_foodButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_bedsNewButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_improvedToolsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_educationCategory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_worldBuilderButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_permissionBlocksButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_chalkboardButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_chemistryButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_npcButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_cameraButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_portfolioButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_classroomModeButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_codeBuilderButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_playingTogetherButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySelectorStackPanel_howToPlaySelectorPane_encyclopediaButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "general_tips_sections">;
    static howToPlaySectionContentPanels_generalTipsSections<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "section_contents_header" | "section_contents_footer" | "moving_around_section" | "gathering_resources_section" | "selecting_items_section" | "placing_blocks_section" | "inventory_section" | "your_first_craft_section" | "recipe_book_section" | "the_crafting_table_section" | "crafting_a_tool_section" | "mining_section" | "nightfall_new_section" | "building_a_shelter_section" | "death_and_respawn_section" | "food_section" | "beds_new_section" | "improved_tools_section" | "world_builder_section" | "permission_blocks_section" | "chalkboard_section" | "chemistry_section" | "npc_section" | "camera_section" | "portfolio_section" | "classroom_mode_section" | "code_builder_section" | "playing_together_section" | "encyclopedia_section">;
    static howToPlaySectionContentPanels_generalTipsSections_sectionContentsHeader<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_movingAroundSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_gatheringResourcesSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_selectingItemsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_placingBlocksSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_inventorySection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_yourFirstCraftSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_recipeBookSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_theCraftingTableSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_craftingAToolSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_miningSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_nightfallNewSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_buildingAShelterSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_deathAndRespawnSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_foodSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_bedsNewSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_improvedToolsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_worldBuilderSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_permissionBlocksSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_chalkboardSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_chemistrySection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_npcSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_cameraSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_portfolioSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_classroomModeSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_codeBuilderSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_playingTogetherSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_encyclopediaSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySectionContentPanels_generalTipsSections_sectionContentsFooter<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "paragraph_1" | "paragraph_2_keyboard" | "paragraph_2_gamepad" | "image_1" | "padding_3a" | "paragraph_touch_joystick_tap" | "paragraph_2_rift_controller" | "paragraph_2_windowsmr_controller" | "paragraph_3a_keyboard" | "paragraph_3b_keyboard" | "paragraph_3a_gamepad" | "paragraph_3b_gamepad" | "paragraph_3_touch_joystick_tap" | "paragraph_3a_touch_classic_dpad" | "paragraph_3b_touch_classic_dpad" | "paragraph_3c_touch_classic_dpad" | "paragraph_3d_touch_classic_dpad" | "paragraph_3e_touch_classic_dpad" | "paragraph_3_touch_joystick_crosshair" | "paragraph_3_rift_controller" | "paragraph_3_windowsmr_controller" | "paragraph_3b_rift_controller" | "paragraph_3b_windowsmr_controller">;
    static movingAroundSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_paragraph2Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_paragraph2Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_paragraphTouchJoystickTap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_paragraph2RiftController<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_paragraph2WindowsmrController<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_paragraph3aKeyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_paragraph3bKeyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_paragraph3aGamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_paragraph3bGamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_paragraph3TouchJoystickTap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_paragraph3aTouchClassicDpad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_paragraph3bTouchClassicDpad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_paragraph3cTouchClassicDpad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_paragraph3dTouchClassicDpad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_paragraph3eTouchClassicDpad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_paragraph3TouchJoystickCrosshair<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_paragraph3RiftController<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_paragraph3WindowsmrController<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_padding3a<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_paragraph3bRiftController<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_paragraph3bWindowsmrController<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static movingAroundSection_image1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringResourcesButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringResourcesSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "paragraph_1" | "paragraph_3" | "paragraph_2_keyboard" | "paragraph_2_gamepad" | "paragraph_2_rift_controller" | "paragraph_2_windowsmr_controller" | "paragraph_2_touch_joystick_tap" | "paragraph_2_touch_classic_dpad" | "paragraph_2_touch_joystick_crosshair">;
    static gatheringResourcesSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringResourcesSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringResourcesSection_paragraph2Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringResourcesSection_paragraph2Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringResourcesSection_paragraph2TouchJoystickTap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringResourcesSection_paragraph2TouchClassicDpad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringResourcesSection_paragraph2TouchJoystickCrosshair<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringResourcesSection_paragraph2RiftController<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringResourcesSection_paragraph2WindowsmrController<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringResourcesSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringResourcesSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectingItemsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectingItemsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "paragraph_1" | "header_1" | "paragraph_2_keyboard" | "paragraph_2_gamepad" | "paragraph_3_keyboard" | "paragraph_3_gamepad" | "paragraph_touch_joystick_tap" | "paragraph_2_rift_controller" | "paragraph_2_windowsmr_controller" | "paragraph_3_touch_joystick_tap" | "paragraph_3_touch_joystick_crosshair" | "paragraph_3_rift_controller" | "paragraph_3_windowsmr_controller" | "paragraph_3_touch_classic_dpad" | "image_1_not_touch" | "image_1_touch">;
    static selectingItemsSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectingItemsSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectingItemsSection_paragraph2Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectingItemsSection_paragraph2Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectingItemsSection_paragraphTouchJoystickTap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectingItemsSection_paragraph2RiftController<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectingItemsSection_paragraph2WindowsmrController<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectingItemsSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectingItemsSection_paragraph3Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectingItemsSection_paragraph3Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectingItemsSection_paragraph3TouchJoystickTap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectingItemsSection_paragraph3TouchClassicDpad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectingItemsSection_paragraph3TouchJoystickCrosshair<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectingItemsSection_paragraph3RiftController<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectingItemsSection_paragraph3WindowsmrController<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectingItemsSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectingItemsSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectingItemsSection_image1NotTouch<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectingItemsSection_image1Touch<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static placingBlocksButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static placingBlocksSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "paragraph_1" | "paragraph_3" | "paragraph_2_keyboard" | "paragraph_2_gamepad" | "paragraph_2_rift_controller" | "paragraph_2_windowsmr_controller" | "paragraph_2_touch_joystick_tap" | "paragraph_2_touch_classic_dpad" | "paragraph_2_touch_joystick_crosshair">;
    static placingBlocksSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static placingBlocksSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static placingBlocksSection_paragraph2Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static placingBlocksSection_paragraph2Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static placingBlocksSection_paragraph2TouchJoystickTap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static placingBlocksSection_paragraph2TouchClassicDpad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static placingBlocksSection_paragraph2TouchJoystickCrosshair<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static placingBlocksSection_paragraph2RiftController<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static placingBlocksSection_paragraph2WindowsmrController<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static placingBlocksSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static placingBlocksSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_2" | "header_1" | "header_2" | "paragraph_2_keyboard" | "paragraph_2_gamepad" | "paragraph_2_touch" | "paragraph_1_keyboard" | "paragraph_1_gamepad" | "paragraph_1_touch" | "paragraph_1_rift_controller" | "paragraph_1_windowsmr_controller" | "image_1_not_touch" | "image_1_touch" | "paragraph_2_rift" | "paragraph_2_windowsmr">;
    static inventorySection_image1NotTouch<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySection_image1Touch<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySection_paragraph1Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySection_paragraph1Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySection_paragraph1RiftController<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySection_paragraph1WindowsmrController<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySection_paragraph1Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySection_paragraph2Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySection_paragraph2Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySection_paragraph2Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySection_paragraph2Rift<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySection_paragraph2Windowsmr<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static yourFirstCraftButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static yourFirstCraftSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_4" | "paragraph_5" | "padding_5" | "paragraph_3_keyboard" | "paragraph_3_gamepad" | "paragraph_3_touch" | "image_1_not_touch" | "image_1_touch" | "paragraph_3_rift" | "paragraph_3_windowsmr">;
    static yourFirstCraftSection_image1NotTouch<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static yourFirstCraftSection_image1Touch<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static yourFirstCraftSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static yourFirstCraftSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static yourFirstCraftSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static yourFirstCraftSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static yourFirstCraftSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static yourFirstCraftSection_paragraph3Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static yourFirstCraftSection_paragraph3Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static yourFirstCraftSection_paragraph3Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static yourFirstCraftSection_paragraph3Rift<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static yourFirstCraftSection_paragraph3Windowsmr<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static yourFirstCraftSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static yourFirstCraftSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static yourFirstCraftSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static yourFirstCraftSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static yourFirstCraftSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeBookButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeBookSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "paragraph_2_keyboard" | "paragraph_2_gamepad" | "paragraph_2_touch" | "paragraph_1_keyboard" | "paragraph_1_gamepad" | "paragraph_1_touch" | "paragraph_2_rift" | "paragraph_2_windowsmr" | "paragraph_1_rift" | "paragraph_1_windowsmr">;
    static recipeBookSection_paragraph1Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeBookSection_paragraph1Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeBookSection_paragraph1Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeBookSection_paragraph1Rift<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeBookSection_paragraph1Windowsmr<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeBookSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeBookSection_paragraph2Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeBookSection_paragraph2Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeBookSection_paragraph2Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeBookSection_paragraph2Rift<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeBookSection_paragraph2Windowsmr<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theCraftingTableButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theCraftingTableSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_2" | "paragraph_1" | "paragraph_2_keyboard" | "paragraph_2_gamepad" | "paragraph_2_touch" | "image_1" | "paragraph_2_rift" | "paragraph_2_windowsmr">;
    static theCraftingTableSection_image1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static theCraftingTableSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theCraftingTableSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theCraftingTableSection_paragraph2Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theCraftingTableSection_paragraph2Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theCraftingTableSection_paragraph2Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theCraftingTableSection_paragraph2Rift<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theCraftingTableSection_paragraph2Windowsmr<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingAToolButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingAToolSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "paragraph_1" | "paragraph_2_keyboard" | "paragraph_2_gamepad" | "paragraph_2_touch" | "paragraph_2_rift" | "paragraph_2_windowsmr">;
    static craftingAToolSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingAToolSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingAToolSection_paragraph2Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingAToolSection_paragraph2Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingAToolSection_paragraph2Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingAToolSection_paragraph2Rift<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingAToolSection_paragraph2Windowsmr<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static miningButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static miningSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_2" | "padding_3" | "paragraph_1" | "paragraph_2" | "paragraph_3" | "image_1">;
    static miningSection_image1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static miningSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static miningSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static miningSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static miningSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static miningSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nightfallNewButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nightfallNewSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "paragraph_1" | "paragraph_2" | "paragraph_3" | "paragraph_4_keyboard" | "paragraph_4_gamepad" | "paragraph_4_touch_joystick_tap" | "paragraph_4_touch_classic_dpad" | "paragraph_4_touch_joystick_crosshair" | "paragraph_4_rift" | "paragraph_4_windowsmr">;
    static nightfallNewSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nightfallNewSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nightfallNewSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nightfallNewSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nightfallNewSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nightfallNewSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nightfallNewSection_paragraph4Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nightfallNewSection_paragraph4Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nightfallNewSection_paragraph4TouchJoystickTap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nightfallNewSection_paragraph4TouchClassicDpad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nightfallNewSection_paragraph4TouchJoystickCrosshair<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nightfallNewSection_paragraph4Rift<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nightfallNewSection_paragraph4Windowsmr<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buildingAShelterButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buildingAShelterSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_2" | "padding_3" | "paragraph_1" | "paragraph_2" | "paragraph_3" | "image_1">;
    static buildingAShelterSection_image1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static buildingAShelterSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buildingAShelterSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buildingAShelterSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buildingAShelterSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buildingAShelterSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static deathAndRespawnButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static deathAndRespawnSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "paragraph_1" | "paragraph_2">;
    static deathAndRespawnSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static deathAndRespawnSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static deathAndRespawnSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static foodButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static foodSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "paragraph_1" | "paragraph_3" | "paragraph_2_keyboard" | "paragraph_2_gamepad" | "paragraph_2_touch" | "paragraph_2_rift" | "paragraph_2_windowsmr">;
    static foodSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static foodSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static foodSection_paragraph2Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static foodSection_paragraph2Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static foodSection_paragraph2Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static foodSection_paragraph2Rift<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static foodSection_paragraph2Windowsmr<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static foodSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static foodSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bedsNewButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bedsNewSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "paragraph_1" | "paragraph_2" | "paragraph_3">;
    static bedsNewSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bedsNewSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bedsNewSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bedsNewSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bedsNewSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static improvedToolsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static improvedToolsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "paragraph_1" | "paragraph_2">;
    static improvedToolsSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static improvedToolsSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static improvedToolsSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldBuilderButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldBuilderSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "paragraph_3" | "paragraph_4" | "paragraph_5" | "padding_5" | "paragraph_6" | "paragraph_7" | "padding_7" | "paragraph_8" | "padding_8" | "paragraph_9">;
    static worldBuilderSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldBuilderSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldBuilderSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldBuilderSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldBuilderSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldBuilderSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldBuilderSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldBuilderSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldBuilderSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldBuilderSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldBuilderSection_paragraph6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldBuilderSection_paragraph7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldBuilderSection_padding7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldBuilderSection_paragraph8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldBuilderSection_padding8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldBuilderSection_paragraph9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionBlocksButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionBlocksSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4" | "paragraph_5" | "padding_5" | "paragraph_6" | "padding_7">;
    static permissionBlocksSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionBlocksSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionBlocksSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionBlocksSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionBlocksSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionBlocksSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionBlocksSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionBlocksSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionBlocksSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionBlocksSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionBlocksSection_padding7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionBlocksSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionBlocksSection_paragraph6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chalkboardButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chalkboardSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "paragraph_1_keyboard" | "paragraph_1_gamepad" | "paragraph_1_touch">;
    static chalkboardSection_paragraph1Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chalkboardSection_paragraph1Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chalkboardSection_paragraph1Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chemistryButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chemistrySection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "paragraph_1" | "paragraph_2">;
    static chemistrySection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chemistrySection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chemistrySection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static npcButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static npcSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "paragraph_1" | "paragraph_2" | "paragraph_3">;
    static npcSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static npcSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static npcSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static npcSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static npcSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cameraButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cameraSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "paragraph_1" | "paragraph_4" | "paragraph_2_keyboard" | "paragraph_2_gamepad" | "paragraph_2_touch" | "paragraph_3_keyboard" | "paragraph_3_gamepad" | "paragraph_3_touch">;
    static cameraSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cameraSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cameraSection_paragraph2Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cameraSection_paragraph2Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cameraSection_paragraph2Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cameraSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cameraSection_paragraph3Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cameraSection_paragraph3Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cameraSection_paragraph3Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cameraSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cameraSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static portfolioButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static portfolioSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "paragraph_1_keyboard" | "paragraph_1_gamepad" | "paragraph_1_touch">;
    static portfolioSection_paragraph1Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static portfolioSection_paragraph1Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static portfolioSection_paragraph1Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static classroomModeButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static classroomModeSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "paragraph_1" | "paragraph_2">;
    static classroomModeSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static classroomModeSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static classroomModeSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static codeBuilderButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static codeBuilderSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "paragraph_1" | "paragraph_2_keyboard" | "paragraph_2_gamepad" | "paragraph_2_touch">;
    static codeBuilderSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static codeBuilderSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static codeBuilderSection_paragraph2Keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static codeBuilderSection_paragraph2Gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static codeBuilderSection_paragraph2Touch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "sign_in_button" | "padding_1" | "padding_2" | "padding_3" | "padding_4" | "paragraph_1" | "paragraph_2" | "header_1" | "header_2" | "paragraph_3" | "paragraph_4" | "paragraph_5" | "padding_5" | "paragraph_6" | "padding_6" | "header_3" | "paragraph_7" | "padding_7" | "paragraph_8" | "padding_8" | "paragraph_9" | "header_4" | "padding_9" | "paragraph_10" | "realms_button">;
    static playingTogetherSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_header1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_paragraph2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_header2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_paragraph3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_paragraph4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_paragraph5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_header3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_paragraph6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_paragraph7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_padding7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_paragraph8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_realmsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_signInButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_padding8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_header4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_paragraph9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_padding9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playingTogetherSection_paragraph10<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tryRealmsActionButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static encyclopediaSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "paragraph_1">;
    static encyclopediaSection_paragraph1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Hud extends Class {
    static hudPlayerRenderer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hud_player">;
    static hudPlayerRenderer_hudPlayer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, "hotbar_slot_image">;
    static hotbarRenderer_hotbarSlotImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cooldownRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static heartRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static horseHeartRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static expProgressBarAndHotbar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "resizing_xp_bar_with_hotbar" | "resizing_hotbar_no_xp_bar" | "resizing_hotbar_locator_bar" | "item_text_factory">;
    static expProgressBarAndHotbar_resizingXpBarWithHotbar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "empty_progress_bar" | "progress_text_label">;
    static expProgressBarAndHotbar_resizingXpBarWithHotbar_emptyProgressBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "full_progress_bar">;
    static expProgressBarAndHotbar_resizingXpBarWithHotbar_emptyProgressBar_fullProgressBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "progress_bar_nub">;
    static expProgressBarAndHotbar_resizingXpBarWithHotbar_emptyProgressBar_fullProgressBar_progressBarNub<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "horse_jump_rend">;
    static expProgressBarAndHotbar_resizingXpBarWithHotbar_emptyProgressBar_fullProgressBar_progressBarNub_horseJumpRend<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, "dash_rend">;
    static expProgressBarAndHotbar_resizingXpBarWithHotbar_emptyProgressBar_fullProgressBar_progressBarNub_horseJumpRend_dashRend<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, "hotbar">;
    static expProgressBarAndHotbar_resizingXpBarWithHotbar_emptyProgressBar_fullProgressBar_progressBarNub_horseJumpRend_dashRend_hotbar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static expProgressBarAndHotbar_resizingXpBarWithHotbar_progressTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static expProgressBarAndHotbar_resizingHotbarNoXpBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "horse_jump_rend">;
    static expProgressBarAndHotbar_resizingHotbarNoXpBar_horseJumpRend<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, "dash_rend">;
    static expProgressBarAndHotbar_resizingHotbarNoXpBar_horseJumpRend_dashRend<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, "hotbar">;
    static expProgressBarAndHotbar_resizingHotbarNoXpBar_horseJumpRend_dashRend_hotbar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static expProgressBarAndHotbar_resizingHotbarLocatorBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_text_label" | "horse_jump_rend" | "dash_rend" | "size_owner" | "locator_bar">;
    static expProgressBarAndHotbar_resizingHotbarLocatorBar_sizeOwner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hotbar" | "size_without_hotbar">;
    static expProgressBarAndHotbar_resizingHotbarLocatorBar_sizeOwner_hotbar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static expProgressBarAndHotbar_resizingHotbarLocatorBar_sizeOwner_sizeWithoutHotbar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static expProgressBarAndHotbar_resizingHotbarLocatorBar_horseJumpRend<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static expProgressBarAndHotbar_resizingHotbarLocatorBar_dashRend<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static expProgressBarAndHotbar_resizingHotbarLocatorBar_locatorBar<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static expProgressBarAndHotbar_resizingHotbarLocatorBar_progressTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static expProgressBarAndHotbar_itemTextFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static expProgressBarAndHotbarPocket<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item_text" | "resizing_xp_bar_with_hotbar" | "horse_jump_rend" | "dash_rend" | "resizing_locator_bar" | "hotbar_panel">;
    static expProgressBarAndHotbarPocket_resizingXpBarWithHotbar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "empty_progress_bar" | "progress_text_label">;
    static expProgressBarAndHotbarPocket_resizingXpBarWithHotbar_emptyProgressBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "full_progress_bar">;
    static expProgressBarAndHotbarPocket_resizingXpBarWithHotbar_emptyProgressBar_fullProgressBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "progress_bar_nub">;
    static expProgressBarAndHotbarPocket_resizingXpBarWithHotbar_emptyProgressBar_fullProgressBar_progressBarNub<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static expProgressBarAndHotbarPocket_resizingXpBarWithHotbar_progressTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static expProgressBarAndHotbarPocket_resizingLocatorBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_text_label" | "locator_bar">;
    static expProgressBarAndHotbarPocket_resizingLocatorBar_locatorBar<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static expProgressBarAndHotbarPocket_resizingLocatorBar_progressTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static expProgressBarAndHotbarPocket_hotbarPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static expProgressBarAndHotbarPocket_itemText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item_text_factory">;
    static expProgressBarAndHotbarPocket_itemText_itemTextFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static expProgressBarAndHotbarPocket_horseJumpRend<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static expProgressBarAndHotbarPocket_dashRend<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static fullProgressBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static emptyProgressBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressBarNub<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static horseJumpRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static dashRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static locatorBar<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static hungerRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static bubblesRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static mobEffectsRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static vignetteRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorGizmoRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static cursorRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressIndicatorRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static cameraRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorVolumeHighlightRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorCompassRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarHudItemIcon<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static elipsesImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static boundButtonLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultBorderlessButtonLayout<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static hoverBorderlessButtonLayout<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pressedBorderlessButtonLayout<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static borderlessButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover" | "elipses">;
    static borderlessButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static borderlessButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static borderlessButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static borderlessButton_elipses<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarElipsesButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static startCapImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static endCapImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarStartCap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "start_cap_image">;
    static hotbarStartCap_startCapImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarEndCap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "end_cap_image">;
    static hotbarEndCap_endCapImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static heartImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarSlotImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarSlotSelectedImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static guiHotbarSlotButtonPrototype<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerPosition<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "player_position_text">;
    static playerPosition_playerPositionText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static numberOfDaysPlayed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "number_of_days_played_text">;
    static numberOfDaysPlayed_numberOfDaysPlayedText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "chat_background">;
    static chatGridItem_chatBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "chat_text">;
    static chatGridItem_chatBackground_chatText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack_panel">;
    static chatPanel_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemDurability<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemStorage<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerItemLockOverlay<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemLockCellImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static guiHotbarGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hotbar_renderer" | "hotbar_slot_button" | "cooldown_renderer" | "hotbar_slot_selected_image" | "hotbar_parent">;
    static guiHotbarGridItem_hotbarSlotSelectedImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static guiHotbarGridItem_hotbarRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static guiHotbarGridItem_hotbarParent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "container_item_lock_overlay" | "item_icon" | "item_count" | "hotbar_hint" | "item_dura" | "item_store">;
    static guiHotbarGridItem_hotbarParent_itemIcon<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static guiHotbarGridItem_hotbarParent_itemCount<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static guiHotbarGridItem_hotbarParent_hotbarHint<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static guiHotbarGridItem_hotbarParent_itemDura<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static guiHotbarGridItem_hotbarParent_itemStore<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static guiHotbarGridItem_hotbarParent_containerItemLockOverlay<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static guiHotbarGridItem_cooldownRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static guiHotbarGridItem_hotbarSlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static guiHotbarGridItemPocket<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hotbar_renderer" | "hotbar_slot_button" | "cooldown_renderer" | "hotbar_slot_selected_image" | "hotbar_parent">;
    static guiHotbarGridItemPocket_hotbarSlotSelectedImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static guiHotbarGridItemPocket_hotbarRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static guiHotbarGridItemPocket_hotbarParent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "container_item_lock_overlay" | "item_icon" | "item_count" | "item_dura" | "item_store">;
    static guiHotbarGridItemPocket_hotbarParent_itemIcon<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static guiHotbarGridItemPocket_hotbarParent_itemCount<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static guiHotbarGridItemPocket_hotbarParent_itemDura<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static guiHotbarGridItemPocket_hotbarParent_itemStore<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static guiHotbarGridItemPocket_hotbarParent_containerItemLockOverlay<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static guiHotbarGridItemPocket_cooldownRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static guiHotbarGridItemPocket_hotbarSlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static centeredGuiElements<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hud_player_rend_desktop">;
    static centeredGuiElements_hudPlayerRendDesktop<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static centeredGuiElementsAtBottomMiddle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "heart_rend" | "horse_heart_rend_0" | "horse_heart_rend_1" | "armor_rend" | "hunger_rend" | "bubbles_rend_0" | "bubbles_rend_1" | "exp_rend">;
    static centeredGuiElementsAtBottomMiddle_heartRend<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static centeredGuiElementsAtBottomMiddle_horseHeartRend0<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static centeredGuiElementsAtBottomMiddle_horseHeartRend1<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static centeredGuiElementsAtBottomMiddle_armorRend<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static centeredGuiElementsAtBottomMiddle_hungerRend<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static centeredGuiElementsAtBottomMiddle_bubblesRend0<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static centeredGuiElementsAtBottomMiddle_bubblesRend1<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static centeredGuiElementsAtBottomMiddle_expRend<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static centeredGuiElementsAtBottomMiddleTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "heart_rend" | "horse_heart_rend_0" | "horse_heart_rend_1" | "armor_rend" | "hunger_rend" | "bubbles_rend_0" | "bubbles_rend_1" | "exp_rend">;
    static centeredGuiElementsAtBottomMiddleTouch_heartRend<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static centeredGuiElementsAtBottomMiddleTouch_horseHeartRend0<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static centeredGuiElementsAtBottomMiddleTouch_horseHeartRend1<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static centeredGuiElementsAtBottomMiddleTouch_armorRend<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static centeredGuiElementsAtBottomMiddleTouch_hungerRend<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static centeredGuiElementsAtBottomMiddleTouch_bubblesRend0<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static centeredGuiElementsAtBottomMiddleTouch_bubblesRend1<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static centeredGuiElementsAtBottomMiddleTouch_expRend<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static notCenteredGuiElements<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "heart_rend" | "armor_rend" | "hunger_rend" | "bubbles_rend_0" | "bubbles_rend_1" | "horse_heart_rend" | "hud_player_rend_pocket">;
    static notCenteredGuiElements_heartRend<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static notCenteredGuiElements_horseHeartRend<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static notCenteredGuiElements_hungerRend<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static notCenteredGuiElements_armorRend<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static notCenteredGuiElements_hudPlayerRendPocket<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static notCenteredGuiElements_bubblesRend0<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static notCenteredGuiElements_bubblesRend1<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarChooser<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "desktop_hotbar" | "pocket_hotbar">;
    static hotbarChooser_desktopHotbar<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarChooser_pocketHotbar<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarElipsesPanelRightContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "elipses_content">;
    static hotbarElipsesPanelRightContent_elipsesContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarElipsesPanelRightArt<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button" | "slot">;
    static hotbarElipsesPanelRightArt_slot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarElipsesPanelRightArt_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarElipsesPanelLeftContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "button">;
    static hotbarElipsesPanelLeftContent_button<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarElipsesPanelLeftArt<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button" | "slot">;
    static hotbarElipsesPanelLeftArt_slot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarElipsesPanelLeftArt_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "hotbar_grid" | "hotbar_start_cap" | "hotbar_end_cap" | "hotbar_elipses_panel_left" | "hotbar_elipses_panel_right">;
    static hotbarPanel_hotbarStartCap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarPanel_hotbarElipsesPanelLeft<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarPanel_hotbarGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarPanel_hotbarElipsesPanelRight<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarPanel_hotbarEndCap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarPanelPocket<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "hotbar_grid" | "hotbar_elipses_panel_left" | "hotbar_elipses_panel_right" | "hotbar_start_cap_frame" | "hotbar_end_cap_frame">;
    static hotbarPanelPocket_hotbarStartCapFrame<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hotbar_start_cap">;
    static hotbarPanelPocket_hotbarStartCapFrame_hotbarStartCap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarPanelPocket_hotbarElipsesPanelLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hotbar_elipses_panel_left">;
    static hotbarPanelPocket_hotbarElipsesPanelLeft_hotbarElipsesPanelLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarPanelPocket_hotbarGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarPanelPocket_hotbarElipsesPanelRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hotbar_elipses_panel_right">;
    static hotbarPanelPocket_hotbarElipsesPanelRight_hotbarElipsesPanelRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarPanelPocket_hotbarEndCapFrame<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hotbar_end_cap">;
    static hotbarPanelPocket_hotbarEndCapFrame_hotbarEndCap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduHotbarGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemNameTextRoot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item_text_aligner">;
    static itemNameTextRoot_itemTextAligner<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "item_text_control" | "interact_padding" | "survival_buffer">;
    static itemNameTextRoot_itemTextAligner_itemTextControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item_text_label" | "item_text_background">;
    static itemNameTextRoot_itemTextAligner_itemTextControl_itemTextBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemNameTextRoot_itemTextAligner_itemTextControl_itemTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemNameTextRoot_itemTextAligner_interactPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemNameTextRoot_itemTextAligner_survivalBuffer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemNameText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jukeboxPopupText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hudTipText<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "item_text_label">;
    static hudTipText_itemTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static autoSave<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static hudActionbarText<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "actionbar_message">;
    static hudActionbarText_actionbarMessage<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static hudTitleText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title_frame" | "subtitle_frame">;
    static hudTitleText_titleFrame<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title" | "title_background">;
    static hudTitleText_titleFrame_titleBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static hudTitleText_titleFrame_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static hudTitleText_subtitleFrame<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "subtitle_background" | "subtitle">;
    static hudTitleText_subtitleFrame_subtitleBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static hudTitleText_subtitleFrame_subtitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bossNamePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "boss_name">;
    static bossNamePanel_bossName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static tooltipHelperIconDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, "label_background">;
    static tooltipHelperIconDescription_labelBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tooltipHelper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "icon" | "centerer">;
    static tooltipHelper_icon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tooltipHelper_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tooltipHelper_centerer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "desc">;
    static tooltipHelper_centerer_desc<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static tooltipHelperFormFitting<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "icon" | "centerer">;
    static tooltipHelperFormFitting_icon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tooltipHelperFormFitting_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tooltipHelperFormFitting_centerer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "desc">;
    static tooltipHelperFormFitting_centerer_desc<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardTooltipHelper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardTooltipHelperFormFitting<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mixedTooltipHelper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_tooltip" | "keyboard_tooltip">;
    static mixedTooltipHelper_gamepadTooltip<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mixedTooltipHelper_keyboardTooltip<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mixedTooltipHelperFormFitting<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_tooltip" | "keyboard_tooltip">;
    static mixedTooltipHelperFormFitting_gamepadTooltip<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mixedTooltipHelperFormFitting_keyboardTooltip<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseIconImage<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "icon" | "postfix_label_wrapper">;
    static baseIconImage_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseIconImage_postfixLabelWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static baseIconImage_postfixLabelWrapper_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseKeyboardIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static baseKeyboardIcon_icon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "key_backing" | "mouse_buttons">;
    static baseKeyboardIcon_icon_keyBacking<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "key_label">;
    static baseKeyboardIcon_icon_keyBacking_keyLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseKeyboardIcon_icon_mouseButtons<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftHelpersEdu<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "tip_window" | "tip_paddding" | "controls_toggle_label" | "controls_inventory_label" | "controls_menu_label">;
    static leftHelpersEdu_tipWindow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "stack_panel">;
    static leftHelpersEdu_tipWindow_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftHelpersEdu_tipPaddding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftHelpersEdu_controlsToggleLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tip">;
    static leftHelpersEdu_controlsToggleLabel_tip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftHelpersEdu_controlsInventoryLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tip">;
    static leftHelpersEdu_controlsInventoryLabel_tip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftHelpersEdu_controlsMenuLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tip">;
    static leftHelpersEdu_controlsMenuLabel_tip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack_panel">;
    static leftHelpers_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteLabelBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteTip<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "emote_keyboard_centerer" | "emote_gamepad_helper">;
    static emoteTip_emoteKeyboardCenterer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "emote_keyboard_helper">;
    static emoteTip_emoteKeyboardCenterer_emoteKeyboardHelper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteTip_emoteGamepadHelper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteExpediateHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack_panel">;
    static emoteExpediateHelpers_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "emote_tip_0" | "emote_tip_1" | "emote_tip_2" | "emote_tip_3">;
    static emoteExpediateHelpers_stackPanel_emoteTip0<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteExpediateHelpers_stackPanel_emoteTip1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteExpediateHelpers_stackPanel_emoteTip2<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteExpediateHelpers_stackPanel_emoteTip3<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack_panel">;
    static rightHelpers_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bossHealthPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "boss_name" | "progress_bar_for_collections">;
    static bossHealthPanel_bossName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bossHealthPanel_progressBarForCollections<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bossHealthGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static wysiwygResetModalOk<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static wysiwygResetModalCancel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static wysiwygCloseWithoutSavingModalOk<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static wysiwygCloseWithoutSavingModalCancel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "mob_effects_renderer" | "save_icon" | "game_tip" | "centered_gui_elements" | "exp_rend" | "centered_gui_elements_at_bottom_middle" | "centered_gui_elements_at_bottom_middle_touch" | "not_centered_gui_elements" | "left_helpers" | "emote_expediate_helpers" | "right_helpers" | "boss_health_panel" | "layout_customization_reset" | "layout_customization_close_without_saving" | "layout_customization_main_panel" | "layout_customization_sub_panel" | "layout_customization_hint_drag_frame" | "layout_customization_hint_deselect_frame" | "layout_customization_hint_saved" | "centered_ridingvr_gui_elements" | "gamertag_label_for_splitscreen" | "exp_rend_resizable" | "hud_tip_text_factory" | "hud_actionbar_text_area" | "hud_title_text_area" | "vignette_rend" | "curor_rend" | "sidebar" | "progress_rend" | "chat_stack">;
    static rootPanel_layoutCustomizationReset<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "layout_customization_reset_modal">;
    static rootPanel_layoutCustomizationReset_layoutCustomizationResetModal<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_layoutCustomizationCloseWithoutSaving<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "layout_customization_close_without_saving_modal">;
    static rootPanel_layoutCustomizationCloseWithoutSaving_layoutCustomizationCloseWithoutSavingModal<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_layoutCustomizationMainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_layoutCustomizationSubPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_layoutCustomizationHintDragFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "layout_customization_hint_drag">;
    static rootPanel_layoutCustomizationHintDragFrame_layoutCustomizationHintDrag<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_layoutCustomizationHintDeselectFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "layout_customization_hint_deselect">;
    static rootPanel_layoutCustomizationHintDeselectFrame_layoutCustomizationHintDeselect<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_layoutCustomizationHintSaved<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "layout_customization_hint_saved">;
    static rootPanel_layoutCustomizationHintSaved_layoutCustomizationHintSaved<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_leftHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_rightHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_emoteExpediateHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_centeredGuiElements<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_centeredGuiElementsAtBottomMiddle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_centeredGuiElementsAtBottomMiddleTouch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_centeredRidingvrGuiElements<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_notCenteredGuiElements<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_gamertagLabelForSplitscreen<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_expRend<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_expRendResizable<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_hudTipTextFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_hudActionbarTextArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_hudTitleTextArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_mobEffectsRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_vignetteRend<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_curorRend<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_gameTip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_sidebar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_progressRend<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_chatStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "game_tip" | "player_position" | "number_of_days_played" | "chat_panel" | "paper_doll_padding" | "paper_doll_padding_living_room" | "vr_riding_chat_padding" | "vr_chat_padding" | "non_centered_gui_padding">;
    static rootPanel_chatStack_paperDollPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_chatStack_paperDollPaddingLivingRoom<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_chatStack_vrRidingChatPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_chatStack_vrChatPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_chatStack_nonCenteredGuiPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_chatStack_playerPosition<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_chatStack_numberOfDaysPlayed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_chatStack_gameTip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_chatStack_chatPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_bossHealthPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "boss_hud_touch_padding" | "boss_hud_padding" | "boss_hud_panel">;
    static rootPanel_bossHealthPanel_bossHudPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_bossHealthPanel_bossHudTouchPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_bossHealthPanel_bossHudPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "boss_health_grid">;
    static rootPanel_bossHealthPanel_bossHudPanel_bossHealthGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel_saveIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static hudScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static hudContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "camera_renderer" | "root_panel" | "editor_gizmo_renderer" | "editor_volume_highlight_renderer" | "editor_compass_renderer">;
    static hudContent_rootPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hudContent_editorGizmoRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static hudContent_editorCompassRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static hudContent_editorVolumeHighlightRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static hudContent_cameraRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static layoutCustomizationMainPanelButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button">;
    static layoutCustomizationMainPanelButton_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static layoutCustomizationMainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel_frame">;
    static layoutCustomizationMainPanel_mainPanelFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "main_panel_content">;
    static layoutCustomizationMainPanel_mainPanelFrame_mainPanelContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "reset_button" | "exit_button" | "opacity_button" | "size_button">;
    static layoutCustomizationMainPanel_mainPanelFrame_mainPanelContent_resetButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static layoutCustomizationMainPanel_mainPanelFrame_mainPanelContent_exitButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static layoutCustomizationMainPanel_mainPanelFrame_mainPanelContent_opacityButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static layoutCustomizationMainPanel_mainPanelFrame_mainPanelContent_sizeButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static layoutCustomizationOptionSlider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "reset" | "slider">;
    static layoutCustomizationOptionSlider_slider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static layoutCustomizationOptionSlider_reset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "reset_button">;
    static layoutCustomizationOptionSlider_reset_resetButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static layoutCustomizationOptionSlider_reset_resetButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static layoutCustomizationOptionSlider_reset_resetButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static layoutCustomizationOptionSlider_reset_resetButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static layoutCustomizationOptionContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "opacity_option" | "scale_option" | "apply_to_all_toggle">;
    static layoutCustomizationOptionContent_scaleOption<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static layoutCustomizationOptionContent_opacityOption<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static layoutCustomizationOptionContent_applyToAllToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "checkbox_frame" | "caption_frame">;
    static layoutCustomizationOptionContent_applyToAllToggle_checkboxFrame<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "checkbox_unchecked" | "checkbox_checked">;
    static layoutCustomizationOptionContent_applyToAllToggle_checkboxFrame_checkboxUnchecked<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static layoutCustomizationOptionContent_applyToAllToggle_checkboxFrame_checkboxChecked<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static layoutCustomizationOptionContent_applyToAllToggle_captionFrame<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "caption">;
    static layoutCustomizationOptionContent_applyToAllToggle_captionFrame_caption<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static layoutCustomizationOption<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static layoutCustomizationOption_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static layoutCustomizationSubPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background">;
    static layoutCustomizationSubPanel_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "sub_panel_content">;
    static layoutCustomizationSubPanel_background_subPanelContent<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class ImReader extends Class {
    static readerButtonContents<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static readerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static webview<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static loading<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "bottom_padding" | "cancel_button" | "animation_item" | "loading_text_item">;
    static loading_animationItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "animation">;
    static loading_animationItem_animation<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static loading_loadingTextItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "loading_text">;
    static loading_loadingTextItem_loadingText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static loading_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loading_cancelButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static noRetryErrorButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static retryErrorButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "cancel" | "middle_padding" | "try_again">;
    static retryErrorButtons_tryAgain<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static retryErrorButtons_middlePadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static retryErrorButtons_cancel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static error<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "error_text" | "error_buttons">;
    static error_errorText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static error_errorButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "retry" | "no_retry">;
    static error_errorButtons_retry<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static error_errorButtons_noRetry<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadingAndErrorPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "error" | "loading">;
    static loadingAndErrorPanel_loading<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadingAndErrorPanel_error<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static immersiveReaderScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "webview" | "loading_and_error">;
    static immersiveReaderScreenContent_loadingAndError<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static immersiveReaderScreenContent_webview<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static immersiveReaderScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Crafting extends Class {
    static inventoryXGamepadHelper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryYGamepadHelper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryAGamepadHelper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryBGamepadHelper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperBumpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_left_bumper" | "gamepad_helper_right_bumper">;
    static gamepadHelperBumpers_gamepadHelperLeftBumper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperBumpers_gamepadHelperRightBumper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperLeftTrigger<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperRightTrigger<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerGamepadHelpersSecondRow<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "fill_panel" | "buffer_panel_left" | "left_thumbstick_visibility" | "right_thumbstick_visibility" | "buffer_panel_right">;
    static containerGamepadHelpersSecondRow_bufferPanelLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerGamepadHelpersSecondRow_leftThumbstickVisibility<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_thumbstick_left">;
    static containerGamepadHelpersSecondRow_leftThumbstickVisibility_gamepadHelperThumbstickLeft<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerGamepadHelpersSecondRow_fillPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerGamepadHelpersSecondRow_rightThumbstickVisibility<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_thumbstick_right">;
    static containerGamepadHelpersSecondRow_rightThumbstickVisibility_gamepadHelperThumbstickRight<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerGamepadHelpersSecondRow_bufferPanelRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingRootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropItemPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryContainerSlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeHotbarContainerSlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static noCoalesceContainerSlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeNoCoalesceContainerSlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static outputNoCoalesceContainerSlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeBookIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabFront<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabBack<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static equipmentIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static constructionIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static natureIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static miscellaneousIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static emptyTabPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "img">;
    static emptyTabPanel_img<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static constructionTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static equipmentTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static natureTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemsTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabNavigationPanelLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "navigation_tabs">;
    static tabNavigationPanelLayout_navigationTabs<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static tabNavigationPanelLayout_navigationTabs_content<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "fill_panel_0" | "construction_tab_panel" | "equipment_tab_panel" | "items_tab_panel" | "nature_tab_panel" | "search_tab_holder">;
    static tabNavigationPanelLayout_navigationTabs_content_constructionTabPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "construction_tab_factory">;
    static tabNavigationPanelLayout_navigationTabs_content_constructionTabPanel_constructionTabFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabNavigationPanelLayout_navigationTabs_content_equipmentTabPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "equipment_tab_factory">;
    static tabNavigationPanelLayout_navigationTabs_content_equipmentTabPanel_equipmentTabFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabNavigationPanelLayout_navigationTabs_content_itemsTabPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "items_tab_factory">;
    static tabNavigationPanelLayout_navigationTabs_content_itemsTabPanel_itemsTabFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabNavigationPanelLayout_navigationTabs_content_natureTabPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "nature_tab_factory">;
    static tabNavigationPanelLayout_navigationTabs_content_natureTabPanel_natureTabFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabNavigationPanelLayout_navigationTabs_content_fillPanel0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabNavigationPanelLayout_navigationTabs_content_searchTabHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "search_tab_end_creative" | "search_tab_creative" | "search_tab_survival">;
    static tabNavigationPanelLayout_navigationTabs_content_searchTabHolder_searchTabEndCreative<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabNavigationPanelLayout_navigationTabs_content_searchTabHolder_searchTabCreative<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabNavigationPanelLayout_navigationTabs_content_searchTabHolder_searchTabSurvival<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabContentPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "nodrop_zone" | "tab_content_search_bar_panel">;
    static tabContent_tabContentSearchBarPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "vertical_padding_1" | "creative_label_and_filter_toggle_holder" | "vertical_padding_2" | "search_and_filter_panel" | "vertical_padding_3" | "scroll_pane">;
    static tabContent_tabContentSearchBarPanel_verticalPadding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabContent_tabContentSearchBarPanel_creativeLabelAndFilterToggleHolder<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "creative_label" | "filter_toggle_holder">;
    static tabContent_tabContentSearchBarPanel_creativeLabelAndFilterToggleHolder_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabContent_tabContentSearchBarPanel_creativeLabelAndFilterToggleHolder_creativeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabContent_tabContentSearchBarPanel_creativeLabelAndFilterToggleHolder_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabContent_tabContentSearchBarPanel_creativeLabelAndFilterToggleHolder_filterToggleHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "filter_toggle">;
    static tabContent_tabContentSearchBarPanel_creativeLabelAndFilterToggleHolder_filterToggleHolder_filterToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabContent_tabContentSearchBarPanel_verticalPadding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabContent_tabContentSearchBarPanel_searchAndFilterPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "text_edit_control" | "padding_1" | "filter_toggle_holder">;
    static tabContent_tabContentSearchBarPanel_searchAndFilterPanel_textEditControl<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabContent_tabContentSearchBarPanel_searchAndFilterPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabContent_tabContentSearchBarPanel_searchAndFilterPanel_filterToggleHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "filter_toggle">;
    static tabContent_tabContentSearchBarPanel_searchAndFilterPanel_filterToggleHolder_filterToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabContent_tabContentSearchBarPanel_verticalPadding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabContent_tabContentSearchBarPanel_scrollPane<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabContent_nodropZone<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorOverlay<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static offhandOverlay<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorOverlayHelmet<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorOverlayChest<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorOverlayLegs<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorImageFeet<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorOverlayShield<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerArmorPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "player_bg" | "player_preview_border" | "armor_grid" | "offhand_grid">;
    static playerArmorPanel_playerBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "player_renderer_panel">;
    static playerArmorPanel_playerBg_playerRendererPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "player_renderer">;
    static playerArmorPanel_playerBg_playerRendererPanel_playerRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerArmorPanel_playerPreviewBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerArmorPanel_armorGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "chest_grid_item" | "head_grid_item" | "legs_grid_item" | "feet_grid_item">;
    static playerArmorPanel_armorGrid_headGridItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerArmorPanel_armorGrid_chestGridItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerArmorPanel_armorGrid_legsGridItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerArmorPanel_armorGrid_feetGridItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerArmorPanel_offhandGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "offhand_grid_item">;
    static playerArmorPanel_offhandGrid_offhandGridItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingArrow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingArrowLarge<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingInputGridItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingGrid3x3<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "crafting_input_item_top_left" | "crafting_input_item_top_mid" | "crafting_input_item_top_right" | "crafting_input_item_mid_left" | "crafting_input_item_middle" | "crafting_input_item_mid_right" | "crafting_input_item_bot_left" | "crafting_input_item_bot_mid" | "crafting_input_item_bot_right">;
    static craftingGrid3x3_craftingInputItemTopLeft<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingGrid3x3_craftingInputItemTopMid<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingGrid3x3_craftingInputItemTopRight<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingGrid3x3_craftingInputItemMidLeft<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingGrid3x3_craftingInputItemMiddle<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingGrid3x3_craftingInputItemMidRight<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingGrid3x3_craftingInputItemBotLeft<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingGrid3x3_craftingInputItemBotMid<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingGrid3x3_craftingInputItemBotRight<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingGrid2x2<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "crafting_input_item_top_left" | "crafting_input_item_top_right" | "crafting_input_item_bot_left" | "crafting_input_item_bot_right">;
    static craftingGrid2x2_craftingInputItemTopLeft<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingGrid2x2_craftingInputItemTopRight<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingGrid2x2_craftingInputItemBotLeft<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingGrid2x2_craftingInputItemBotRight<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static outputGrid3x3<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "work_bench_output">;
    static outputGrid3x3_workBenchOutput<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static outputGrid2x2<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "work_bench_output">;
    static outputGrid2x2_workBenchOutput<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static workBenchPanel3x3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_label" | "crafting_arrow_large" | "crafting_grid_3x3_with_label_0" | "work_bench_output_grid">;
    static workBenchPanel3x3_inventoryLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static workBenchPanel3x3_craftingArrowLarge<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static workBenchPanel3x3_craftingGrid3x3WithLabel0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static workBenchPanel3x3_workBenchOutputGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingGrid3x3WithLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "crafting_label" | "crafting_grid_3x3">;
    static craftingGrid3x3WithLabel_craftingLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingGrid3x3WithLabel_craftingGrid3x3<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingGrid2x2WithLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "crafting_label" | "crafting_grid_2x2">;
    static craftingGrid2x2WithLabel_craftingLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingGrid2x2WithLabel_craftingGrid2x2<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingPanel2x2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "crafting_arrow" | "crafting_grid_2x2" | "crafting_table" | "survival_crafting_output_grid">;
    static craftingPanel2x2_craftingArrow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingPanel2x2_craftingTable<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingPanel2x2_craftingGrid2x2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingPanel2x2_survivalCraftingOutputGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static survivalPanelTopHalf<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "player_armor_panel" | "crafting_panel">;
    static survivalPanelTopHalf_playerArmorPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static survivalPanelTopHalf_craftingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingPanelTopHalf<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "crafting_panel">;
    static craftingPanelTopHalf_craftingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeContainerCellImages<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cellImageRecipeDefault<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cellImageRecipeGroupHeadCollapsed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cellImageRecipeGroupHeadExpanded<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cellImageRecipeGroupItem<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cellImageRecipeSelected<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cellImageRecipeDefaultRed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerCellImages<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cell_classic" | "cell_normal" | "cell_invert" | "cell_red" | "cell_selected" | "cell_darkgrey">;
    static containerCellImages_cellClassic<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerCellImages_cellNormal<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerCellImages_cellInvert<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerCellImages_cellRed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerCellImages_cellSelected<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerCellImages_cellDarkgrey<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingContainerCellImages<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cellImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cellImageClassic<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cellImageNormal<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cellImageInvert<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cellImageRed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cellImageSelected<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cellImageDarkgrey<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerOverlayImages<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "expand" | "contract">;
    static containerOverlayImages_expand<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerOverlayImages_contract<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemOverlayImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemOverlayContract<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemOverlayExpand<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryContainerItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "bundle_slot_panel" | "container_item_lock_overlay" | "item_lock_cell_image" | "item_cell" | "item_cell_overlay_ref" | "item_selected_image" | "item_button_ref">;
    static inventoryContainerItem_itemCell<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item" | "storage_bar" | "$background_image_control_name" | "durability_bar" | "$overlay_image_control_name">;
    static inventoryContainerItem_itemCell_$backgroundImageControlName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryContainerItem_itemCell_item<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack_count_label" | "$item_renderer">;
    static inventoryContainerItem_itemCell_item_stackCountLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryContainerItem_itemCell_item_$itemRenderer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryContainerItem_itemCell_durabilityBar<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryContainerItem_itemCell_storageBar<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryContainerItem_itemCell_$overlayImageControlName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryContainerItem_itemCellOverlayRef<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryContainerItem_itemSelectedImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryContainerItem_itemButtonRef<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryContainerItem_containerItemLockOverlay<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryContainerItem_itemLockCellImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryContainerItem_bundleSlotPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridItemForRecipeBook<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollGridPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "grid">;
    static scrollGridPanel_grid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeBookScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static layoutToggleContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image" | "icon">;
    static layoutToggleContent_image<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static layoutToggleContent_icon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static layoutTemplateToggle<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static layoutToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeLayoutToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeBookLayoutToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static survivalLayoutToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static helpButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static helpButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static helpButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static helpButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerInventory<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "common_panel" | "hotbar_grid" | "inventory_panel_bottom_half" | "inventory_panel_top_half">;
    static playerInventory_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerInventory_inventoryPanelTopHalf<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerInventory_inventoryPanelBottomHalf<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerInventory_hotbarGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeBook<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "bg" | "tab_navigation_panel" | "tab_content_panel" | "gamepad_helper_bumpers" | "creative_hotbar_panel">;
    static recipeBook_gamepadHelperBumpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeBook_tabNavigationPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeBook_bg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeBook_tabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeBook_creativeHotbarPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeHotbarPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "creative_hotbar_background">;
    static creativeHotbarPanel_creativeHotbarBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "hotbar_grid">;
    static creativeHotbarPanel_creativeHotbarBackground_hotbarGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static centerFold<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "center_bg">;
    static centerFold_centerBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "toolbar_background">;
    static toolbarPanel_toolbarBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "toolbar_stack_panel">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "padding_2" | "padding_3" | "padding_4" | "left_trigger_anchor" | "creative_layout_toggle_panel" | "recipe_book_layout_toggle_panel_survival" | "recipe_book_layout_toggle_panel_creative" | "survival_layout_toggle_panel" | "help_button_panel" | "close_button_panel" | "right_trigger_anchor">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_leftTriggerAnchor<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_left_trigger">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_leftTriggerAnchor_gamepadHelperLeftTrigger<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_creativeLayoutTogglePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "creative_layout_toggle">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_creativeLayoutTogglePanel_creativeLayoutToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_recipeBookLayoutTogglePanelSurvival<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "recipe_book_layout_toggle">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_recipeBookLayoutTogglePanelSurvival_recipeBookLayoutToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_recipeBookLayoutTogglePanelCreative<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "recipe_book_layout_toggle">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_recipeBookLayoutTogglePanelCreative_recipeBookLayoutToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_survivalLayoutTogglePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "survival_layout_toggle">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_survivalLayoutTogglePanel_survivalLayoutToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_helpButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "help_button">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_helpButtonPanel_helpButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_closeButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "close_button">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_closeButtonPanel_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_rightTriggerAnchor<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_right_trigger">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_rightTriggerAnchor_gamepadHelperRightTrigger<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryScreenBase<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeBookToggleImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeInventoryScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "selected_item_details_factory" | "item_lock_notification_factory" | "inventory_selected_icon_button" | "inventory_take_progress_icon_button" | "hold_icon" | "content_stack_panel" | "controller_gamepad_helpers_stack_panel">;
    static recipeInventoryScreenContent_contentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "recipe_book" | "player_inventory" | "center_fold" | "survival_padding" | "toolbar_anchor">;
    static recipeInventoryScreenContent_contentStackPanel_recipeBook<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeInventoryScreenContent_contentStackPanel_centerFold<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeInventoryScreenContent_contentStackPanel_survivalPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeInventoryScreenContent_contentStackPanel_playerInventory<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeInventoryScreenContent_contentStackPanel_toolbarAnchor<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toolbar_panel">;
    static recipeInventoryScreenContent_contentStackPanel_toolbarAnchor_toolbarPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeInventoryScreenContent_inventoryTakeProgressIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeInventoryScreenContent_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeInventoryScreenContent_holdIcon<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeInventoryScreenContent_controllerGamepadHelpersStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "container_gamepad_helpers" | "container_gamepad_helpers_second_row">;
    static recipeInventoryScreenContent_controllerGamepadHelpersStackPanel_containerGamepadHelpersSecondRow<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeInventoryScreenContent_controllerGamepadHelpersStackPanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeInventoryScreenContent_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeInventoryScreenContent_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeInventoryScreenContent_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CraftingPocket extends Class {
    static survivalIcon<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static fullScreenIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingArrowDown<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static emptyTabPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$tab_icon">;
    static emptyTabPanel_$tabIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fullScreenTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static armorTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static constructionTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static equipmentTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemsTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static natureTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftTabNavigationPanelPocket<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static leftTabNavigationPanelPocket_content<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "fill" | "construction_tab_panel" | "equipment_tab_panel" | "items_tab_panel" | "nature_tab_panel" | "inventory_tab" | "search_tab_panel">;
    static leftTabNavigationPanelPocket_content_searchTabPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "search_tab">;
    static leftTabNavigationPanelPocket_content_searchTabPanel_searchTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftTabNavigationPanelPocket_content_constructionTabPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "construction_tab_factory">;
    static leftTabNavigationPanelPocket_content_constructionTabPanel_constructionTabFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftTabNavigationPanelPocket_content_equipmentTabPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "equipment_tab_factory">;
    static leftTabNavigationPanelPocket_content_equipmentTabPanel_equipmentTabFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftTabNavigationPanelPocket_content_itemsTabPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "items_tab_factory">;
    static leftTabNavigationPanelPocket_content_itemsTabPanel_itemsTabFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftTabNavigationPanelPocket_content_natureTabPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "nature_tab_factory">;
    static leftTabNavigationPanelPocket_content_natureTabPanel_natureTabFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftTabNavigationPanelPocket_content_fill<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftTabNavigationPanelPocket_content_inventoryTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightTabNavigationPanelPocket<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static rightTabNavigationPanelPocket_content<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "fill" | "close" | "full_screen_tab" | "crafting_tab" | "armor_tab">;
    static rightTabNavigationPanelPocket_content_close<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "close_button" | "nodrop_zone">;
    static rightTabNavigationPanelPocket_content_close_nodropZone<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightTabNavigationPanelPocket_content_close_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightTabNavigationPanelPocket_content_fill<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightTabNavigationPanelPocket_content_fullScreenTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightTabNavigationPanelPocket_content_craftingTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightTabNavigationPanelPocket_content_armorTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeBookTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content" | "bg">;
    static rightTabContent_bg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightTabContent_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingInputGridItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingGrid3x3<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingGrid2x2<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static outputGridAndLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "recipe_item_label" | "output_grid">;
    static outputGridAndLabel_recipeItemLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static outputGridAndLabel_outputGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static outputGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "work_bench_output">;
    static outputGrid_workBenchOutput<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingGrid3x3WithLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "crafting_label" | "crafting_grid_3x3">;
    static craftingGrid3x3WithLabel_craftingLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingGrid3x3WithLabel_craftingGrid3x3<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingGrid2x2WithLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "crafting_label" | "crafting_grid_2x2">;
    static craftingGrid2x2WithLabel_craftingLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingGrid2x2WithLabel_craftingGrid2x2<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollBackgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridItemForInventory<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static survivalInventoryGrid<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelPocket<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeBookScrollPanelPocket<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static survivalScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketArmorTabContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label_and_renderer" | "equipment_and_renderer">;
    static pocketArmorTabContent_labelAndRenderer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label_panel" | "renderer_panel">;
    static pocketArmorTabContent_labelAndRenderer_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "armor_label">;
    static pocketArmorTabContent_labelAndRenderer_labelPanel_armorLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketArmorTabContent_labelAndRenderer_rendererPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "armor_renderer">;
    static pocketArmorTabContent_labelAndRenderer_rendererPanel_armorRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketArmorTabContent_equipmentAndRenderer<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "equipment" | "armor_panel">;
    static pocketArmorTabContent_equipmentAndRenderer_equipment<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "armor_grid" | "offhand_grid">;
    static pocketArmorTabContent_equipmentAndRenderer_equipment_armorGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "chest_grid_item" | "head_grid_item" | "legs_grid_item" | "feet_grid_item">;
    static pocketArmorTabContent_equipmentAndRenderer_equipment_armorGrid_headGridItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketArmorTabContent_equipmentAndRenderer_equipment_armorGrid_chestGridItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketArmorTabContent_equipmentAndRenderer_equipment_armorGrid_legsGridItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketArmorTabContent_equipmentAndRenderer_equipment_armorGrid_feetGridItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketArmorTabContent_equipmentAndRenderer_equipment_offhandGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "offhand_grid_item">;
    static pocketArmorTabContent_equipmentAndRenderer_equipment_offhandGrid_offhandGridItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketArmorTabContent_equipmentAndRenderer_armorPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "armor_and_player">;
    static pocketArmorTabContent_equipmentAndRenderer_armorPanel_armorAndPlayer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "player_preview_border">;
    static pocketArmorTabContent_equipmentAndRenderer_armorPanel_armorAndPlayer_playerPreviewBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "player_bg">;
    static pocketArmorTabContent_equipmentAndRenderer_armorPanel_armorAndPlayer_playerPreviewBorder_playerBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "player_renderer_panel">;
    static pocketArmorTabContent_equipmentAndRenderer_armorPanel_armorAndPlayer_playerPreviewBorder_playerBg_playerRendererPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "player_renderer">;
    static pocketArmorTabContent_equipmentAndRenderer_armorPanel_armorAndPlayer_playerPreviewBorder_playerBg_playerRendererPanel_playerRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "hotbar_grid" | "bg">;
    static hotbarPanel_bg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarPanel_hotbarGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarGridItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static survivalPanelPocket<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "output" | "crafting_table" | "crafting_panel" | "crafting_arrow_down">;
    static survivalPanelPocket_craftingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static survivalPanelPocket_craftingArrowDown<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static survivalPanelPocket_craftingTable<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static survivalPanelPocket_output<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static survivalPanelCraftingPocket<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "output" | "crafting_panel" | "crafting_arrow_down">;
    static survivalPanelCraftingPocket_craftingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static survivalPanelCraftingPocket_craftingArrowDown<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static survivalPanelCraftingPocket_output<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryScreenPocketBase<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingScreenPocket<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryScreenPocket<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "recipe_book_tab_content" | "inventory_tab_content" | "left_background">;
    static leftPanel_leftBackground<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_recipeBookTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_inventoryTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "help_button" | "right_background" | "crafting_tab_content" | "armor_tab_content">;
    static rightPanel_rightBackground<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_helpButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_craftingTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_armorTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bothPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_panel" | "right_panel" | "left_tab_navigation_panel_pocket" | "right_tab_navigation_panel_pocket" | "offset_panel">;
    static bothPanels_leftTabNavigationPanelPocket<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bothPanels_leftPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bothPanels_offsetPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "center_bg">;
    static bothPanels_offsetPanel_centerBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bothPanels_rightPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bothPanels_rightTabNavigationPanelPocket<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperBorder<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "both_panels" | "left_gamepad_panel" | "right_gamepad_panel">;
    static gamepadHelperBorder_leftGamepadPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_left_bumper" | "gamepad_helper_left_trigger">;
    static gamepadHelperBorder_leftGamepadPanel_gamepadHelperLeftBumper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperBorder_leftGamepadPanel_gamepadHelperLeftTrigger<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperBorder_bothPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperBorder_rightGamepadPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_right_bumper" | "gamepad_helper_right_trigger" | "gamepad_helper_right_bumper_creative">;
    static gamepadHelperBorder_rightGamepadPanel_gamepadHelperRightBumperCreative<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperBorder_rightGamepadPanel_gamepadHelperRightBumper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperBorder_rightGamepadPanel_gamepadHelperRightTrigger<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarAndPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "gamepad_helper_border" | "hotbar_section_panel">;
    static hotbarAndPanels_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarAndPanels_gamepadHelperBorder<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarAndPanels_hotbarSectionPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "hotbar">;
    static hotbarAndPanels_hotbarSectionPanel_hotbar<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeInventoryScreenContentPocket<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "selected_item_details_factory" | "item_lock_notification_factory" | "base_panel" | "container_gamepad_helpers_pocket" | "toast_screen_content">;
    static recipeInventoryScreenContentPocket_containerGamepadHelpersPocket<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeInventoryScreenContentPocket_toastScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeInventoryScreenContentPocket_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeInventoryScreenContentPocket_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeInventoryScreenContentPocket_basePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_cursor" | "root_panel" | "inventory_selected_icon_button" | "hold_icon" | "hotbar_and_panels">;
    static recipeInventoryScreenContentPocket_basePanel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeInventoryScreenContentPocket_basePanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeInventoryScreenContentPocket_basePanel_gamepadCursor<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeInventoryScreenContentPocket_basePanel_holdIcon<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeInventoryScreenContentPocket_basePanel_hotbarAndPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeInventoryScreenContentPocket_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Invite extends Class {
    static blackBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static blackBorderHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static greyBorderlessLocked<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkedLockedImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static uncheckedLockedImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftArrowImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightArrowImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountLinkImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadingFriends<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountLinkIcon<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "account_link_image" | "space_01" | "space_03">;
    static accountLinkIcon_space01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountLinkIcon_accountLinkImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountLinkIcon_space03<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamerpic<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyProfilePic<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamerpicPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "black_border" | "gamerpic">;
    static gamerpicPanel_blackBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamerpicPanel_gamerpic<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyProfilePicPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "third_party_profile_pic" | "black_border">;
    static thirdPartyProfilePicPanel_blackBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyProfilePicPanel_thirdPartyProfilePic<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "platform_icon">;
    static platformIconPanel_platformIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static statusImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static onlineImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static offlineImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static onlineIndicator<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "online_image" | "offline_image">;
    static onlineIndicator_onlineImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static onlineIndicator_offlineImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkedPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "checked_image">;
    static checkedPanel_checkedImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static uncheckedPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "unchecked_image">;
    static uncheckedPanel_uncheckedImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkedLockedPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "checked_image">;
    static checkedLockedPanel_checkedImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static uncheckedLockedPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "unchecked_image">;
    static uncheckedLockedPanel_uncheckedImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkedHoverPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "checked_hover_image">;
    static checkedHoverPanel_checkedHoverImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static uncheckedHoverPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "unchecked_hover_image">;
    static uncheckedHoverPanel_uncheckedHoverImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendGridXblGamertag<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendGridCurrentGameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendGridThirdPartyTag<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendBackgroundHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendBackgroundBorderless<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static hoverFriendButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hover_text" | "friend_button_layout">;
    static hoverFriendButton_friendButtonLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hoverFriendButton_hoverText<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedHoverFriendButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hover_text">;
    static linkedHoverFriendButton_hoverText<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static msaFriendButtonLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer01" | "platform_icon_spacer" | "gamerpic_panel_positioner" | "spacer_02" | "friend_grid_label_layout" | "online_indication_positioner">;
    static msaFriendButtonLayout_spacer01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static msaFriendButtonLayout_platformIconSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static msaFriendButtonLayout_gamerpicPanelPositioner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "pp">;
    static msaFriendButtonLayout_gamerpicPanelPositioner_pp<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static msaFriendButtonLayout_spacer02<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static msaFriendButtonLayout_friendGridLabelLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "friend_grid_xbl_gamertag" | "friend_grid_current_game_label" | "spacer_01">;
    static msaFriendButtonLayout_friendGridLabelLayout_spacer01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static msaFriendButtonLayout_friendGridLabelLayout_friendGridXblGamertag<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static msaFriendButtonLayout_friendGridLabelLayout_friendGridCurrentGameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static msaFriendButtonLayout_onlineIndicationPositioner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "indicator_images">;
    static msaFriendButtonLayout_onlineIndicationPositioner_indicatorImages<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformFriendButtonLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer01" | "platform_icon_spacer" | "spacer_02" | "friend_grid_label_layout" | "online_indication_positioner" | "third_party_pic_panel_positioner" | "platform_icon_positioner">;
    static platformFriendButtonLayout_spacer01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformFriendButtonLayout_platformIconSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformFriendButtonLayout_thirdPartyPicPanelPositioner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "pp">;
    static platformFriendButtonLayout_thirdPartyPicPanelPositioner_pp<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformFriendButtonLayout_spacer02<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformFriendButtonLayout_friendGridLabelLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "friend_grid_current_game_label" | "friend_grid_third_party_tag" | "spacer_01">;
    static platformFriendButtonLayout_friendGridLabelLayout_spacer01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformFriendButtonLayout_friendGridLabelLayout_friendGridThirdPartyTag<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformFriendButtonLayout_friendGridLabelLayout_friendGridCurrentGameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformFriendButtonLayout_platformIconPositioner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "platform_icon">;
    static platformFriendButtonLayout_platformIconPositioner_platformIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformFriendButtonLayout_onlineIndicationPositioner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "indicator_images">;
    static platformFriendButtonLayout_onlineIndicationPositioner_indicatorImages<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedFriendButtonLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer01" | "online_indication_positioner" | "platform_icon_positioner" | "spacer02" | "platform_profile_pictures" | "spacer03" | "platform_profile_names">;
    static linkedFriendButtonLayout_spacer01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedFriendButtonLayout_platformIconPositioner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "platform_icon">;
    static linkedFriendButtonLayout_platformIconPositioner_platformIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedFriendButtonLayout_spacer02<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedFriendButtonLayout_platformProfilePictures<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer_01" | "pp2" | "account_link" | "pp1" | "spacer_03">;
    static linkedFriendButtonLayout_platformProfilePictures_spacer01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedFriendButtonLayout_platformProfilePictures_pp2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedFriendButtonLayout_platformProfilePictures_accountLink<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedFriendButtonLayout_platformProfilePictures_pp1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedFriendButtonLayout_platformProfilePictures_spacer03<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedFriendButtonLayout_spacer03<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedFriendButtonLayout_platformProfileNames<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "friend_grid_xbl_gamertag" | "friend_grid_current_game_label" | "friend_grid_third_party_tag" | "spacer_02" | "spacer_01">;
    static linkedFriendButtonLayout_platformProfileNames_spacer01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedFriendButtonLayout_platformProfileNames_friendGridThirdPartyTag<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedFriendButtonLayout_platformProfileNames_spacer02<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedFriendButtonLayout_platformProfileNames_friendGridXblGamertag<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedFriendButtonLayout_platformProfileNames_friendGridCurrentGameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedFriendButtonLayout_onlineIndicationPositioner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "indicator_images">;
    static linkedFriendButtonLayout_onlineIndicationPositioner_indicatorImages<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateMsaFriendButtonLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "friend_background" | "friend_button_layout" | "unchecked">;
    static templateMsaFriendButtonLayout_friendBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateMsaFriendButtonLayout_friendButtonLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateMsaFriendButtonLayout_unchecked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static templatePlatformFriendButtonLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "friend_background" | "friend_button_layout" | "unchecked">;
    static templatePlatformFriendButtonLayout_friendBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static templatePlatformFriendButtonLayout_friendButtonLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static templatePlatformFriendButtonLayout_unchecked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateLinkedFriendButtonLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "friend_background" | "horizontal_spacer_panel">;
    static templateLinkedFriendButtonLayout_friendBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateLinkedFriendButtonLayout_horizontalSpacerPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "friend_button_layout" | "unchecked_locked">;
    static templateLinkedFriendButtonLayout_horizontalSpacerPanel_uncheckedLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateLinkedFriendButtonLayout_horizontalSpacerPanel_friendButtonLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static msaFriendButton<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, "unchecked" | "unchecked_locked" | "checked" | "checked_hover" | "unchecked_hover" | "checked_locked" | "checked_locked_hover" | "unchecked_locked_hover">;
    static msaFriendButton_checked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static msaFriendButton_unchecked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static msaFriendButton_checkedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static msaFriendButton_uncheckedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static msaFriendButton_checkedLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static msaFriendButton_uncheckedLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static msaFriendButton_checkedLockedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static msaFriendButton_uncheckedLockedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformFriendButton<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, "unchecked" | "unchecked_locked" | "checked" | "checked_hover" | "unchecked_hover" | "checked_locked" | "checked_locked_hover" | "unchecked_locked_hover">;
    static platformFriendButton_checked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformFriendButton_unchecked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformFriendButton_checkedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformFriendButton_uncheckedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformFriendButton_checkedLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformFriendButton_uncheckedLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformFriendButton_checkedLockedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformFriendButton_uncheckedLockedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedFriendButton<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, "unchecked" | "unchecked_locked" | "checked" | "checked_hover" | "unchecked_hover" | "checked_locked" | "checked_locked_hover" | "unchecked_locked_hover">;
    static linkedFriendButton_checked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedFriendButton_unchecked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedFriendButton_checkedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedFriendButton_uncheckedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedFriendButton_checkedLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedFriendButton_uncheckedLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedFriendButton_checkedLockedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedFriendButton_uncheckedLockedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static msaFriendGridItemTemplate<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "friend_button">;
    static msaFriendGridItemTemplate_friendButton<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformFriendGridItemTemplate<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "friend_button">;
    static platformFriendGridItemTemplate_friendButton<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendLinkedAccountGridItemTemplate<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "friend_button">;
    static friendLinkedAccountGridItemTemplate_friendButton<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static onlineXboxLiveFriendGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static offlineXboxLiveFriendGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static onlineLinkedAccountFriendGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static offlineLinkedAccountFriendGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static onlinePlatformFriendGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static offlinePlatformFriendGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static onlineXboxLiveFriendListGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static offlineXboxLiveFriendListGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static onlinePlatformFriendListGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static offlinePlatformFriendListGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static onlineLinkedAccountFriendListGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static offlineLinkedAccountFriendListGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPaginationControls<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "next_button" | "previous_button" | "center_panel">;
    static friendsPaginationControls_previousButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPaginationControls_centerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "page_counter">;
    static friendsPaginationControls_centerPanel_pageCounter<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPaginationControls_nextButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsCategory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "friends_grid" | "pagination_stack_panel">;
    static friendsCategory_friendsGrid<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsCategory_paginationStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "divider" | "pagination_controls">;
    static friendsCategory_paginationStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsCategory_paginationStackPanel_paginationControls<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsCategory_paginationStackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsCategory_paginationStackPanel_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsCategory_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static frameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "message" | "vertical_padding_1" | "vertical_padding_2" | "vertical_padding_3" | "online_platform" | "vertical_padding_0" | "online_platform_friend_list_category" | "crossplatform_disabled_panel" | "crossplatform_disable_spacer" | "online_cross_platform" | "online_linked_account_friend_list_category" | "online_xbox_live_friend_list_category" | "offline_platform" | "offline_platform_friend_list_category" | "no_platform_friends" | "offline_cross_platform" | "offline_linked_account_friend_list_category" | "offline_xbox_live_friend_list_category" | "no_xbox_live_friends">;
    static scrollingContentStack_message<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "frame_label">;
    static scrollingContentStack_message_frameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack_onlinePlatform<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "frame_label">;
    static scrollingContentStack_onlinePlatform_frameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack_verticalPadding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack_onlinePlatformFriendListCategory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack_crossplatformDisabledPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "disable_text">;
    static scrollingContentStack_crossplatformDisabledPanel_disableText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack_crossplatformDisableSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack_onlineCrossPlatform<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "frame_label">;
    static scrollingContentStack_onlineCrossPlatform_frameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack_verticalPadding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack_onlineLinkedAccountFriendListCategory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack_onlineXboxLiveFriendListCategory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack_offlinePlatform<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "frame_label">;
    static scrollingContentStack_offlinePlatform_frameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack_verticalPadding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack_offlinePlatformFriendListCategory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack_noPlatformFriends<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "no_friends_tts_wrapper">;
    static scrollingContentStack_noPlatformFriends_noFriendsTtsWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack_offlineCrossPlatform<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "frame_label">;
    static scrollingContentStack_offlineCrossPlatform_frameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack_verticalPadding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack_offlineLinkedAccountFriendListCategory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack_offlineXboxLiveFriendListCategory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack_noXboxLiveFriends<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "no_friends_tts_wrapper">;
    static scrollingContentStack_noXboxLiveFriends_noFriendsTtsWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressBarAndScrollingContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_bars" | "invite_scrolling_area">;
    static progressBarAndScrollingContentPanel_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressBarAndScrollingContentPanel_inviteScrollingArea<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noXboxLiveFriendsFrameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static noPlatformFriendsFrameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalInvitePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalInvitePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteButtonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_label" | "gameplay_helper">;
    static inviteButtonContent_gameplayHelper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteButtonContent_buttonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteButtonContentHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteButtonContentPressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteButtonContentLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addFriendButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static addMemberButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static sendButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalButtonStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "send_button" | "add_friend_button" | "add_member_button">;
    static horizontalButtonStackPanel_addFriendButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalButtonStackPanel_addMemberButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalButtonStackPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalButtonStackPanel_sendButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalButtonsTopPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "add_friend_button" | "add_member_button">;
    static verticalButtonsTopPanel_addFriendButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalButtonsTopPanel_addMemberButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalButtonsBottomPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "send_button">;
    static verticalButtonsBottomPanel_sendButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_a">;
    static gamepadHelpers_gamepadHelperA<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helpers" | "invite_panel">;
    static inviteScreenContent_gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteScreenContent_invitePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Bed extends Class {
    static inBedScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static inBedScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "wake_up_label_panel" | "select_button" | "wake_up_button_panel">;
    static inBedScreenContent_wakeUpButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer" | "wake_up_button" | "chat_button">;
    static inBedScreenContent_wakeUpButtonPanel_wakeUpButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static inBedScreenContent_wakeUpButtonPanel_spacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inBedScreenContent_wakeUpButtonPanel_chatButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static inBedScreenContent_wakeUpLabelPanel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static inBedScreenContent_selectButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class JigsawEditor extends Class {
    static horizontalBuffer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalBuffer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static helpIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleWithLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "toggle" | "toggle_label_padding" | "toggle_label_wrapper">;
    static toggleWithLabel_toggle<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleWithLabel_toggleLabelPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleWithLabel_toggleLabelWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toggle_label" | "toggle_label_disabled">;
    static toggleWithLabel_toggleLabelWrapper_toggleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleWithLabel_toggleLabelWrapper_toggleLabelDisabled<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static dataItemTitleAndEdit<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "data_title" | "data_text_edit">;
    static dataItemTitleAndEdit_dataTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static dataItemTitleAndEdit_dataTextEdit<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static dataItemTitleAndEditFill<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dataItemTitleAndToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "toggle" | "data_title">;
    static dataItemTitleAndToggle_dataTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static dataItemTitleAndToggle_toggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static exitButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "buffer" | "help_button" | "done_button">;
    static exitButtons_doneButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static exitButtons_buffer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static exitButtons_helpButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingPanelWrapper<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static scrollingPanelWrapper_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "target_pool_title_and_edit" | "buffer_1" | "name_title_and_edit" | "buffer_2" | "target_title_and_edit" | "buffer_3" | "final_block_title_and_edit" | "buffer_4" | "selection_and_placement_priority" | "buffer_5" | "joint_type_title_and_toggle" | "buffer_6">;
    static scrollPanelContent_targetPoolTitleAndEdit<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent_buffer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent_nameTitleAndEdit<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent_buffer2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent_targetTitleAndEdit<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent_buffer3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent_finalBlockTitleAndEdit<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent_buffer4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent_selectionAndPlacementPriority<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent_buffer5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent_jointTypeTitleAndToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent_buffer6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectionAndPlacementPriority<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "buffer_1" | "selection_priority_title_and_edit" | "placement_priority_title_and_edit">;
    static selectionAndPlacementPriority_selectionPriorityTitleAndEdit<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectionAndPlacementPriority_buffer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectionAndPlacementPriority_placementPriorityTitleAndEdit<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanelWrapper<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "exit_buttons">;
    static buttonPanelWrapper_exitButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawEditorPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel" | "button_wrapper">;
    static jigsawEditorPanel_scrollingPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawEditorPanel_buttonWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "buttons">;
    static jigsawEditorPanel_buttonWrapper_buttons<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawEditorContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title" | "background_panel" | "jigsaw_editor_panel">;
    static jigsawEditorContent_backgroundPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawEditorContent_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawEditorContent_jigsawEditorPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static jigsawEditorScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class LateJoin extends Class {
    static animationPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stacked_column">;
    static animationPanel_stackedColumn<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "waiting_animating_text">;
    static animationPanel_stackedColumn_waitingAnimatingText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_b_and_padding">;
    static gamepadHelpers_gamepadHelperBAndPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_b">;
    static gamepadHelpers_gamepadHelperBAndPadding_gamepadHelperB<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lateJoinPregameScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static lateJoinScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helpers" | "animation_panel">;
    static lateJoinScreenContent_animationPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lateJoinScreenContent_gamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class LibraryModal extends Class {
    static modalButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalTextContent<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalOk<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalCancel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static inGamePrompt<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fetchError<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "fetch" | "ingame">;
    static content_fetch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static content_ingame<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentWrapper<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static contentWrapper_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static libraryModalScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static textPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static continueButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static paragraph<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static welcomeTextPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "paragraph_1_wrapper" | "paragraph_two" | "paragraph_three">;
    static welcomeTextPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static welcomeTextPanel_paragraph1Wrapper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "edu_icon" | "stack_buffer1" | "paragraph_1_panel">;
    static welcomeTextPanel_paragraph1Wrapper_eduIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static welcomeTextPanel_paragraph1Wrapper_stackBuffer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static welcomeTextPanel_paragraph1Wrapper_paragraph1Panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "paragraph_1">;
    static welcomeTextPanel_paragraph1Wrapper_paragraph1Panel_paragraph1<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static welcomeTextPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static welcomeTextPanel_paragraphTwo<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static welcomeTextPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static welcomeTextPanel_paragraphThree<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static welcomeScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static welcomePanelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background_panel" | "continue_button" | "welcome_scrolling_panel">;
    static welcomePanelContent_backgroundPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static welcomePanelContent_welcomeScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static welcomePanelContent_continueButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static welcomePanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "welcome">;
    static welcomePanel_welcome<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class LocalWorldPicker extends Class {
    static localWorldPickerScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldPickerContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "content" | "panel_label">;
    static localWorldPickerContent_background<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldPickerContent_panelLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldPickerContent_content<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Loom extends Class {
    static loomLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static patternCellImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerCellImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannerOutline<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannerEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dyeEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static patternItemEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static highlightSlotPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "highlight" | "white_border">;
    static highlightSlotPanel_highlight<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static highlightSlotPanel_whiteBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static patternSlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "hover">;
    static patternSlotButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannerPattern<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static patternButton<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "item_button_ref" | "$background_image_control_name" | "banner_pattern">;
    static patternButton_$backgroundImageControlName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static patternButton_bannerPattern<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static patternButton_itemButtonRef<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollGridPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "grid">;
    static scrollGridPanel_grid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static patternBookPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "bg" | "scroll_panel">;
    static patternBookPanel_bg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static patternBookPanel_scrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultSlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dyeItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static materialItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputSlotsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "input_item_slot" | "material_item_slot" | "padding_1" | "padding_2" | "dye_item_slot">;
    static inputSlotsStackPanel_inputItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputSlotsStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputSlotsStackPanel_dyeItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputSlotsStackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputSlotsStackPanel_materialItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultBannerRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "input_slots_holder" | "arrow_holder" | "result_item_slot_holder" | "result_banner_outline">;
    static topHalfStackPanel_inputSlotsHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "input_slots_stack_panel">;
    static topHalfStackPanel_inputSlotsHolder_inputSlotsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfStackPanel_arrowHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "arrow_icon">;
    static topHalfStackPanel_arrowHolder_arrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfStackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfStackPanel_resultItemSlotHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "result_item_slot">;
    static topHalfStackPanel_resultItemSlotHolder_resultItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfStackPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfStackPanel_resultBannerOutline<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "result_banner_renderer">;
    static topHalfStackPanel_resultBannerOutline_resultBannerRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top_half_stack_panel">;
    static topHalfPanel_topHalfStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "common_panel" | "loom_screen_inventory">;
    static rightPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_loomScreenInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top_half_panel" | "inventory_panel_bottom_half_with_label" | "hotbar_grid" | "loom_label">;
    static rightPanel_loomScreenInventory_loomLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_loomScreenInventory_topHalfPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_loomScreenInventory_inventoryPanelBottomHalfWithLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_loomScreenInventory_hotbarGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static helpButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "toolbar_background">;
    static toolbarPanel_toolbarBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "toolbar_stack_panel">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "help_button_panel" | "close_button_panel">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_helpButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "help_button">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_helpButtonPanel_helpButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_closeButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "close_button">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_closeButtonPanel_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarAnchor<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toolbar_panel">;
    static toolbarAnchor_toolbarPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static centerFold<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "center_bg">;
    static centerFold_centerBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "right_panel" | "center_fold" | "toolbar_anchor" | "pattern_book_panel">;
    static screenStackPanel_patternBookPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenStackPanel_centerFold<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenStackPanel_rightPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenStackPanel_toolbarAnchor<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory" | "inventory_selected_icon_button" | "inventory_take_progress_icon_button" | "screen_stack_panel">;
    static loomPanel_screenStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomPanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomPanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomPanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomPanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomPanel_inventoryTakeProgressIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomPanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class LoomPocket extends Class {
    static verticalArrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannerEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dyeEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static patternItemEmptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static chestItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannerItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dyeItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static materialItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content" | "navigation_tabs_holder">;
    static rightPanel_content<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "bg" | "loom_content_stack_panel">;
    static rightPanel_content_bg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_content_loomContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_navigationTabsHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "right_navigation_tabs">;
    static rightPanel_navigationTabsHolder_rightNavigationTabs<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightTabLoom<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightNavigationTabs<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "fill" | "pocket_tab_close_and_help_button" | "right_tab_loom">;
    static rightNavigationTabs_pocketTabCloseAndHelpButton<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightNavigationTabs_fill<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightNavigationTabs_rightTabLoom<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputSlotsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "input_item_slot" | "material_item_slot" | "padding_1" | "padding_2" | "dye_item_slot">;
    static inputSlotsStackPanel_inputItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputSlotsStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputSlotsStackPanel_dyeItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputSlotsStackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputSlotsStackPanel_materialItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultBannerOutline<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "result_banner_renderer">;
    static resultBannerOutline_resultBannerRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "label_holder" | "padding_2" | "padding_3" | "padding_4" | "padding_5" | "input_slots_holder" | "arrow_holder" | "result_item_slot_holder" | "banner_pattern_holder">;
    static loomContentStackPanel_labelHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "loom_label">;
    static loomContentStackPanel_labelHolder_loomLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomContentStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomContentStackPanel_inputSlotsHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "input_slots_stack_panel">;
    static loomContentStackPanel_inputSlotsHolder_inputSlotsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomContentStackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomContentStackPanel_bannerPatternHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "result_banner_outline">;
    static loomContentStackPanel_bannerPatternHolder_resultBannerOutline<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomContentStackPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomContentStackPanel_arrowHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "vertical_arrow_icon">;
    static loomContentStackPanel_arrowHolder_verticalArrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomContentStackPanel_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomContentStackPanel_resultItemSlotHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "result_item_slot">;
    static loomContentStackPanel_resultItemSlotHolder_resultItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomContentStackPanel_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static patternButton<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannerPattern<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static patternScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content" | "gamepad_helpers_and_tabs_holder">;
    static leftPanel_gamepadHelpersAndTabsHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "navigation_tabs_holder" | "tabs_left_gamepad_helpers">;
    static leftPanel_gamepadHelpersAndTabsHolder_tabsLeftGamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_gamepadHelpersAndTabsHolder_navigationTabsHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left_navigation_tabs">;
    static leftPanel_gamepadHelpersAndTabsHolder_navigationTabsHolder_leftNavigationTabs<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_content<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "bg" | "inventory_scroll_panel" | "pattern_scroll_panel">;
    static leftPanel_content_bg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_content_inventoryScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_content_patternScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftTabPatterns<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftTabInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftNavigationTabs<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "left_tab_inventory" | "left_tab_patterns">;
    static leftNavigationTabs_leftTabPatterns<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftNavigationTabs_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftNavigationTabs_leftTabInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketHotbarAndContentPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory" | "inventory_selected_icon_button" | "inventory_take_progress_icon_button" | "pocket_hotbar_and_content_panels">;
    static loomPanel_pocketHotbarAndContentPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomPanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomPanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomPanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomPanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomPanel_inventoryTakeProgressIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static loomPanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class ManageFeed extends Class {
    static manageFeedItemScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "manage_feed_item_scrolling_panel_content">;
    static manageFeedItemScrollingPanel_manageFeedItemScrollingPanelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static manageFeedItemScrollingPanelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pagination_panel" | "top_spacing_gap" | "manage_feed_loading_grid_item" | "manage_feed_grid" | "spacing_gap2">;
    static gridPanel_topSpacingGap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridPanel_manageFeedLoadingGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridPanel_manageFeedGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridPanel_spacingGap2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridPanel_paginationPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paginationPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static manageFeedGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static manageFeedGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image_panel_instance" | "manage_feed_buttons_panel" | "manage_feed_text_instance" | "feed_timesince_instance" | "nr_of_reports" | "manage_player_pic_panel" | "manage_feed_gamertag_instance">;
    static manageFeedGridItem_imagePanelInstance<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static manageFeedGridItem_manageFeedButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static manageFeedGridItem_manageFeedTextInstance<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static manageFeedGridItem_feedTimesinceInstance<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static manageFeedGridItem_nrOfReports<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static manageFeedGridItem_managePlayerPicPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static manageFeedGridItem_manageFeedGamertagInstance<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static manageFeedButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "delete_button" | "ignore_button">;
    static manageFeedButtonsPanel_ignoreButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static manageFeedButtonsPanel_deleteButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static manageFeedLoadingGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "loading_image_panel">;
    static manageFeedLoadingGridItem_loadingImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static feedButtonsPanelLoading<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacing_gap2" | "like_button_loading" | "spacing_gap1" | "comment_button_loading" | "options_button_loading">;
    static feedButtonsPanelLoading_likeButtonLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static feedButtonsPanelLoading_spacingGap1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static feedButtonsPanelLoading_commentButtonLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static feedButtonsPanelLoading_spacingGap2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static feedButtonsPanelLoading_optionsButtonLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static likeButtonLoading<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static commentButtonLoading<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionsButtonLoading<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerPicPanelLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "player_gamer_pic_loading">;
    static playerPicPanelLoading_playerGamerPicLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerGamerPicLoading<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadingImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_bars" | "no_feed_item_content" | "manage_feed_image_loading">;
    static loadingImagePanel_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadingImagePanel_manageFeedImageLoading<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadingImagePanel_noFeedItemContent<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static manageFeedImageLoading<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static ignoreButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static ignoreContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "ignore_label">;
    static ignoreContentPanel_ignoreLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static deleteButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static deleteContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "delete_label">;
    static deleteContentPanel_deleteLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static manageFeedImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static manageFeedImageContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "manage_feed_image" | "textpost_content">;
    static manageFeedImageContentPanel_manageFeedImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static manageFeedImageContentPanel_textpostContent<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static textpostContent<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static imagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "manage_feed_image_content_panel">;
    static imagePanel_manageFeedImageContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static managePlayerPicPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "manage_player_gamer_pic">;
    static managePlayerPicPanel_managePlayerGamerPic<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static managePlayerGamerPic<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helpers" | "top_bar_gradient" | "return_button" | "reported_items_label" | "manage_feed_item_scrolling_panel_instance">;
    static content_topBarGradient<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static content_gamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static content_returnButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static content_reportedItemsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static content_manageFeedItemScrollingPanelInstance<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static manageFeedScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static manageFeedScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "container" | "transparent_background">;
    static manageFeedScreenContent_transparentBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static manageFeedScreenContent_container<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static manageFeedScreenContent_container_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class ManifestValidation extends Class {
    static clipboardIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static clipboardIconWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static clipboardIconWrapper_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static trashIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static trashIconWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_bars" | "icon">;
    static trashIconWrapper_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static trashIconWrapper_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static refreshIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static refreshIconWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_bars" | "icon">;
    static refreshIconWrapper_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static refreshIconWrapper_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "divider_image">;
    static sectionDivider_dividerImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static textLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static blackBackgroundFill<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "black">;
    static errorPackSecondaryLayout_black<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "stack_panel">;
    static errorPackSecondaryLayout_black_stackPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack_panel" | "secondary_panel">;
    static errorPackSecondaryLayout_black_stackPanel_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "button_panel" | "pad" | "icon_background" | "pack_info">;
    static errorPackSecondaryLayout_black_stackPanel_stackPanel_iconBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static errorPackSecondaryLayout_black_stackPanel_stackPanel_iconBackground_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_stackPanel_packInfo<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top" | "bottom">;
    static errorPackSecondaryLayout_black_stackPanel_stackPanel_packInfo_top<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "title" | "pack_size">;
    static errorPackSecondaryLayout_black_stackPanel_stackPanel_packInfo_top_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_stackPanel_packInfo_top_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_stackPanel_packInfo_top_packSize<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_stackPanel_packInfo_bottom<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "description">;
    static errorPackSecondaryLayout_black_stackPanel_stackPanel_packInfo_bottom_description<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_stackPanel_packInfo_bottom_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_stackPanel_buttonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "refresh" | "pad" | "top_pad" | "delete">;
    static errorPackSecondaryLayout_black_stackPanel_stackPanel_buttonPanel_topPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_stackPanel_buttonPanel_refresh<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button">;
    static errorPackSecondaryLayout_black_stackPanel_stackPanel_buttonPanel_refresh_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_stackPanel_buttonPanel_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_stackPanel_buttonPanel_delete<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button">;
    static errorPackSecondaryLayout_black_stackPanel_stackPanel_buttonPanel_delete_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_stackPanel_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_secondaryPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title_panel" | "padding_1" | "padding_0" | "padding_2" | "pad_1" | "pad_0" | "version_panel" | "path_panel">;
    static errorPackSecondaryLayout_black_stackPanel_secondaryPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_secondaryPanel_titlePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offset" | "title_text" | "space">;
    static errorPackSecondaryLayout_black_stackPanel_secondaryPanel_titlePanel_titleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_secondaryPanel_titlePanel_space<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_secondaryPanel_titlePanel_offset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title">;
    static errorPackSecondaryLayout_black_stackPanel_secondaryPanel_titlePanel_offset_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_secondaryPanel_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_secondaryPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_secondaryPanel_versionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offset" | "version_text" | "space">;
    static errorPackSecondaryLayout_black_stackPanel_secondaryPanel_versionPanel_versionText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_secondaryPanel_versionPanel_space<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_secondaryPanel_versionPanel_offset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "version">;
    static errorPackSecondaryLayout_black_stackPanel_secondaryPanel_versionPanel_offset_version<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_secondaryPanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_secondaryPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_secondaryPanel_pathPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offset" | "space" | "path_text">;
    static errorPackSecondaryLayout_black_stackPanel_secondaryPanel_pathPanel_pathText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_secondaryPanel_pathPanel_space<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackSecondaryLayout_black_stackPanel_secondaryPanel_pathPanel_offset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "description">;
    static errorPackSecondaryLayout_black_stackPanel_secondaryPanel_pathPanel_offset_description<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackContentLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "black">;
    static errorPackContentLayout_black<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "error_panel">;
    static errorPackContentLayout_black_errorPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_0" | "error_text_panel" | "error_header_panel">;
    static errorPackContentLayout_black_errorPanel_errorHeaderPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button" | "error_type_panel">;
    static errorPackContentLayout_black_errorPanel_errorHeaderPanel_errorTypePanel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackContentLayout_black_errorPanel_errorHeaderPanel_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackContentLayout_black_errorPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackContentLayout_black_errorPanel_errorTextPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offset" | "error_text" | "space">;
    static errorPackContentLayout_black_errorPanel_errorTextPanel_errorText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackContentLayout_black_errorPanel_errorTextPanel_space<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPackContentLayout_black_errorPanel_errorTextPanel_offset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "error_label">;
    static errorPackContentLayout_black_errorPanel_errorTextPanel_offset_errorLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static deleteButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static deleteTextButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static clipboardButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static refreshButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static refreshTextButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static packSecondaryInfo<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "layout">;
    static packSecondaryInfo_layout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorContentGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packErrorItem<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "error" | "secondary" | "error_header">;
    static packErrorItem_secondary<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packErrorItem_errorHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "error_text">;
    static packErrorItem_errorHeader_errorText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static packErrorItem_error<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packErrorGroup<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "top_padding" | "errors">;
    static packErrorGroup_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packErrorGroup_errors<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packErrorGroup_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingOffsets<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static manifestValidationScrollContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static manifestValidationScrollContent_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static manifestValidationScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "pack_error_group">;
    static manifestValidationScrollPanel_packErrorGroup<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static manifestValidationScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static manifestValidationScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background">;
    static manifestValidationScreenContent_background<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class MobEffect extends Class {
    static effectBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static effectName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static effectTimer<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static effectIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mobEffectGridPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "mob_effect_grid">;
    static mobEffectGridPanel_mobEffectGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static mobEffectGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static mobEffectGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "name" | "bg" | "icon" | "timer">;
    static mobEffectGridItem_bg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mobEffectGridItem_name<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mobEffectGridItem_timer<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mobEffectGridItem_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mobEffectListContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static mobEffectListContentPanel_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mobEffectScreenCloseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bg" | "close_button">;
    static closeButtonPanel_bg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonPanel_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mobEffectContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content_panel" | "bg" | "close_panel">;
    static mobEffectContent_bg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mobEffectContent_closePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mobEffectContent_contentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_screen">;
    static mainScreen_mainScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mobEffectScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class NonXblUserManagement extends Class {
    static blackTintImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalTitleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalLabelText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "text">;
    static modalLabelText_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalLabelText_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalLeftButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalMiddleButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalRightcancelButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static threeButtonsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left" | "right" | "middle">;
    static threeButtonsPanel_left<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static threeButtonsPanel_middle<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static threeButtonsPanel_right<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static twoButtonsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left" | "right">;
    static twoButtonsPanel_left<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static twoButtonsPanel_right<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static singleButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left">;
    static singleButtonPanel_left<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalDialogWithButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title" | "button_panel" | "background_with_buttons" | "text_with_buttons">;
    static modalDialogWithButtons_backgroundWithButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalDialogWithButtons_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalDialogWithButtons_textWithButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalDialogWithButtons_buttonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalInputPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "black_tint_image">;
    static modalInputPanel_blackTintImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static userConfirmDialogScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "modal_input">;
    static userConfirmDialogScreenContent_modalInput<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "modal_bg_buttons">;
    static userConfirmDialogScreenContent_modalInput_modalBgButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static userConfirmDialogScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class NpcInteract extends Class {
    static multilineTextEditControl<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditControl<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static labelPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinModel<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinModelClipper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button" | "clip" | "selectFrame">;
    static skinsGridItem_clip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "model">;
    static skinsGridItem_clip_model<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsGridItem_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsGridItem_selectFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static cyclePackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cyclePackLeftButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cyclePackRightButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannerFill<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPicker<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "left" | "right" | "sg">;
    static skinPicker_left<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPicker_sg<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPicker_right<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static nameEdit<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button">;
    static advancedButton_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button">;
    static dialogButton_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static basicStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "name_label" | "name_edit" | "top_pad" | "advanced_button" | "dialog_button" | "name_padding" | "dialog_pre_padding" | "dialog_label" | "dialog_post_padding" | "dialog__padding" | "appearance_pre_padding" | "appearance_label" | "appearance_post_padding" | "skins">;
    static basicStackPanel_topPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static basicStackPanel_nameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static basicStackPanel_namePadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static basicStackPanel_nameEdit<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static basicStackPanel_dialogPrePadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static basicStackPanel_dialogLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static basicStackPanel_dialogPostPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static basicStackPanel_dialog_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static basicStackPanel_dialogButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static basicStackPanel_appearancePrePadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static basicStackPanel_appearanceLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static basicStackPanel_appearancePostPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static basicStackPanel_skins<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static basicStackPanel_advancedButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static basicContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "basic">;
    static basicContent_basic<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_pad" | "add_help_text" | "middle_pad" | "actions" | "add_buttons" | "bottom_pad">;
    static advancedStackPanel_topPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedStackPanel_addHelpText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedStackPanel_middlePad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedStackPanel_actions<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedStackPanel_addButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedStackPanel_bottomPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static actionTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static plusIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static plusButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static actionTextEdit<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static maximizedActionEdit<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static actionEdit<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "expand" | "text_edit">;
    static actionEdit_textEdit<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static actionEdit_expand<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonNameEdit<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandToggle<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandTogglePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toggle_label" | "command_toggle">;
    static commandTogglePanel_commandToggle<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static commandTogglePanel_toggleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static actionMode<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "button_mode_toggle_panel" | "on_enter_toggle_panel" | "on_exit_toggle_panel">;
    static actionMode_buttonModeTogglePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static actionMode_onEnterTogglePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static actionMode_onExitTogglePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static urlNotifications<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "empty_uri_warning" | "invalid_uri_warning">;
    static urlNotifications_emptyUriWarning<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static urlNotifications_invalidUriWarning<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static actionTemplate<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title" | "button_name" | "action_mode" | "button_name_label" | "label_pad" | "edit" | "edit_pad" | "url_warning" | "url_pad" | "mode_pad">;
    static actionTemplate_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static actionTemplate_labelPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static actionTemplate_edit<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static actionTemplate_editPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static actionTemplate_urlWarning<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static actionTemplate_urlPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static actionTemplate_actionMode<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static actionTemplate_modePad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static actionTemplate_buttonNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static actionTemplate_buttonName<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static actionCommand<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static actionUrl<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paddedAction<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "action">;
    static paddedAction_action<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static paddedAction_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static action<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "url" | "trash" | "command">;
    static action_trash<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static action_command<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static action_url<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static actionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static helpLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static addHelpSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "text_url" | "text_command">;
    static addHelpSection_textUrl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tts_border" | "wrapper_panel_url">;
    static addHelpSection_textUrl_ttsBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static addHelpSection_textUrl_wrapperPanelUrl<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "text_url_a" | "text_url_b">;
    static addHelpSection_textUrl_wrapperPanelUrl_textUrlA<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static addHelpSection_textUrl_wrapperPanelUrl_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addHelpSection_textUrl_wrapperPanelUrl_textUrlB<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static addHelpSection_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addHelpSection_textCommand<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tts_border" | "wrapper_panel_command">;
    static addHelpSection_textCommand_ttsBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static addHelpSection_textCommand_wrapperPanelCommand<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "text_command_a" | "text_command_b">;
    static addHelpSection_textCommand_wrapperPanelCommand_textCommandA<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static addHelpSection_textCommand_wrapperPanelCommand_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addHelpSection_textCommand_wrapperPanelCommand_textCommandB<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static addHelpText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "add_url" | "add_command">;
    static addButtons_addUrl<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static addButtons_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addButtons_addCommand<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedScrollingContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "advanced">;
    static advancedScrollingContent_advanced<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static messageModel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "model">;
    static messageModel_model<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static clippedMessageModel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "model">;
    static clippedMessageModel_model<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static messageModelWindow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "model" | "immersive_reader_button">;
    static messageModelWindow_model<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static messageModelWindow_immersiveReaderButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static editBoxBackground<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static npcMessage<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, "background" | "label" | "visibility_panel">;
    static npcMessage_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static npcMessage_visibilityPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "place_holder">;
    static npcMessage_visibilityPanel_placeHolder<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static npcMessage_background<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textScroll<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static studentMessageBubble<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "dialog_panel">;
    static studentMessageBubble_dialogPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text_scroll">;
    static studentMessageBubble_dialogPanel_textScroll<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bubblePoint<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static studentMessageSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "message" | "model" | "point">;
    static studentMessageSection_model<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static studentMessageSection_point<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static studentMessageSection_message<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static studentButtonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static studentButtonLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "url" | "command">;
    static studentButtonLabelPanel_url<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static studentButtonLabelPanel_command<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static studentButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button">;
    static studentButton_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static studentButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "buttons">;
    static studentButtons_buttons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "actions">;
    static studentButtons_buttons_actions<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static studentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "message" | "buttons" | "top_pad" | "message_pad">;
    static studentStackPanel_topPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static studentStackPanel_message<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static studentStackPanel_messagePad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static studentStackPanel_buttons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static studentViewContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "close" | "student">;
    static studentViewContent_student<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static studentViewContent_close<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonBase<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static closeButtonBase_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonBase_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonBase_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xCloseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static ignorableXCloseButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button">;
    static ignorableXCloseButton_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "close_basic" | "close_student_edit" | "close_student" | "close_maximized_action_edit" | "close_advanced">;
    static closeButtonHolder_closeBasic<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonHolder_closeStudentEdit<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonHolder_closeStudent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonHolder_closeMaximizedActionEdit<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonHolder_closeAdvanced<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "basic" | "advanced" | "close" | "maximized_action_edit">;
    static mainContent_basic<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainContent_advanced<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainContent_maximizedActionEdit<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainContent_close<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperExitText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static npcScreenContents<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "student" | "teacher" | "npc_screen_close">;
    static npcScreenContents_teacher<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static npcScreenContents_student<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static npcScreenContents_npcScreenClose<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static npcScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class OnlineSafety extends Class {
    static onlineSafetyProceedButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static onlineSafetyBackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static onlineSafetyDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static ipSafetyDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static onlineSafetyLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ipSafetyLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static doNotShowCheckbox<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, "header_description_stack_panel">;
    static doNotShowCheckbox_headerDescriptionStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "checkbox_visuals" | "buffer_panel" | "another_panel">;
    static doNotShowCheckbox_headerDescriptionStackPanel_checkboxVisuals<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static doNotShowCheckbox_headerDescriptionStackPanel_bufferPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static doNotShowCheckbox_headerDescriptionStackPanel_bufferPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static doNotShowCheckbox_headerDescriptionStackPanel_anotherPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static onlineSafetyDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ipSafetyDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_a">;
    static gamepadHelpers_gamepadHelperA<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static onlineSafetyScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static onlineSafetyScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helpers" | "online_safety_dialog">;
    static onlineSafetyScreenContent_onlineSafetyDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static onlineSafetyScreenContent_gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ipSafetyScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static ipSafetyScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helpers" | "ip_safety_dialog">;
    static ipSafetyScreenContent_ipSafetyDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ipSafetyScreenContent_gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class PackSettings extends Class {
    static background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content_tiering_panel" | "generated_form">;
    static scrollingContent_contentTieringPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContent_generatedForm<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentTieringPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label_panel" | "slider_panel" | "incompatible_label_panel">;
    static contentTieringPanel_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content_tier_label" | "unsupported_content_tier_label">;
    static contentTieringPanel_labelPanel_contentTierLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentTieringPanel_labelPanel_unsupportedContentTierLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentTieringPanel_sliderPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content_tier_slider">;
    static contentTieringPanel_sliderPanel_contentTierSlider<T extends Types = Types.Slider>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentTieringPanel_incompatibleLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static contentTieringPanel_incompatibleLabelPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Panorama extends Class {
    static panoramaView<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "screenshot" | "pan_left" | "pan_right">;
    static panoramaView_panLeft<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panoramaView_screenshot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panoramaView_panRight<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panoramaInputPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "image_border">;
    static panoramaInputPanel_imageBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "panorama_key_art" | "progress_loading">;
    static panoramaInputPanel_imageBorder_panoramaKeyArt<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static panoramaInputPanel_imageBorder_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panLeftButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panRightButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class PatchNotes extends Class {
    static solidTexture<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageWithBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "image">;
    static imageWithBackground_image<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "loading_animation">;
    static imageWithBackground_image_loadingAnimation<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static whiteImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static patchMainImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static patchNotesHeaderBackground<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "black_background">;
    static patchNotesHeaderBackground_blackBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "content">;
    static patchNotesHeaderBackground_blackBackground_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text_label">;
    static buttonLabelPanel_textLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_label2">;
    static buttonContent_buttonLabel2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static patchImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static patchNotesHeaderContentWithoutOffer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "patch_image">;
    static patchNotesHeaderContentWithoutOffer_patchImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static patchNotesHeaderContentWithOffer<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "patch_image" | "store_item_section">;
    static patchNotesHeaderContentWithOffer_patchImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static patchNotesHeaderContentWithOffer_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static patchNotesHeaderContentWithOffer_storeItemSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "store_image" | "store_button">;
    static patchNotesHeaderContentWithOffer_storeItemSection_storeImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static patchNotesHeaderContentWithOffer_storeItemSection_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static patchNotesHeaderContentWithOffer_storeItemSection_storeButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "loading_animation" | "store_button">;
    static storeButton_storeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeButton_loadingAnimation<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static patchNotesHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "patch_notes_background">;
    static patchNotesHeader_patchNotesBackground<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "patch_notes_header" | "tts_label_wrapper">;
    static scrollContent_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollContent_patchNotesHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollContent_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollContent_ttsLabelWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static patchNotesPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "patch_notes_text">;
    static patchNotesPanel_patchNotesText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, "loading_animation">;
    static patchNotesPanel_patchNotesText_loadingAnimation<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static patchNotesContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static patchNotesContent_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static continueButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static patchNotesDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static patchNotesScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static sunsettingButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "padding_2" | "continue_button" | "more_info_button" | "sunsetting_toggle_panel">;
    static sunsettingButtonPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sunsettingButtonPanel_moreInfoButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static sunsettingButtonPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sunsettingButtonPanel_continueButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static sunsettingButtonPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sunsettingButtonPanel_sunsettingTogglePanel<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, "header_description_stack_panel">;
    static sunsettingButtonPanel_sunsettingTogglePanel_headerDescriptionStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "checkbox_visuals" | "buffer_panel" | "another_panel">;
    static sunsettingButtonPanel_sunsettingTogglePanel_headerDescriptionStackPanel_checkboxVisuals<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sunsettingButtonPanel_sunsettingTogglePanel_headerDescriptionStackPanel_bufferPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static sunsettingButtonPanel_sunsettingTogglePanel_headerDescriptionStackPanel_bufferPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static sunsettingButtonPanel_sunsettingTogglePanel_headerDescriptionStackPanel_anotherPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sunsettingContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static sunsettingContent_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sunsettingDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sunsettingScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Pause extends Class {
    static achievementsIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static feedbackIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static changeSkinIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static takeScreenshotIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static alexIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static profileGamerpic<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonX<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dressingRoomControllerButtonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_label_panel" | "button_x">;
    static dressingRoomControllerButtonContent_buttonX<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dressingRoomControllerButtonContent_buttonLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_label_text_left">;
    static dressingRoomControllerButtonContent_buttonLabelPanel_buttonLabelTextLeft<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static controllerButtonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static columnFrame<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dressingRoomButtonGamepad<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static dressingRoomButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static profileButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_middle" | "button_offset_wrapper" | "gamerpic_offset_wrapper" | "vertically_central_text" | "padding_right">;
    static profileButtonContent_buttonOffsetWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_x">;
    static profileButtonContent_buttonOffsetWrapper_buttonX<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static profileButtonContent_gamerpicOffsetWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamerpic_with_border">;
    static profileButtonContent_gamerpicOffsetWrapper_gamerpicWithBorder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamerpic" | "alex_icon" | "border_black">;
    static profileButtonContent_gamerpicOffsetWrapper_gamerpicWithBorder_gamerpic<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static profileButtonContent_gamerpicOffsetWrapper_gamerpicWithBorder_alexIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static profileButtonContent_gamerpicOffsetWrapper_gamerpicWithBorder_borderBlack<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static profileButtonContent_paddingMiddle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static profileButtonContent_verticallyCentralText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_padding" | "profile_button_label">;
    static profileButtonContent_verticallyCentralText_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static profileButtonContent_verticallyCentralText_profileButtonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static profileButtonContent_paddingRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static profileButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinViewerPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "paper_doll_panel" | "paper_doll_name_tag">;
    static skinViewerPanel_paperDollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "paper_doll">;
    static skinViewerPanel_paperDollPanel_paperDoll<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinViewerPanel_paperDollNameTag<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "interior">;
    static skinPanel_interior<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPanelInterior<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offset_panel" | "change_profile_panel">;
    static skinPanelInterior_offsetPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "viewer_panel">;
    static skinPanelInterior_offsetPanel_viewerPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPanelInterior_changeProfilePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "centering_panel_1" | "centering_panel_2" | "centering_panel_3">;
    static skinPanelInterior_changeProfilePanel_centeringPanel1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dressing_room_button">;
    static skinPanelInterior_changeProfilePanel_centeringPanel1_dressingRoomButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPanelInterior_changeProfilePanel_centeringPanel2<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "dressing_room_button_gamepad">;
    static skinPanelInterior_changeProfilePanel_centeringPanel2_dressingRoomButtonGamepad<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPanelInterior_changeProfilePanel_centeringPanel3<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "profile_button">;
    static skinPanelInterior_changeProfilePanel_centeringPanel3_profileButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static pauseButtonTemplate<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridButtonTemplate<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static returnToGameButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_stories_button" | "unread_story_count_panel">;
    static realmsStoriesButtonPanel_realmsStoriesButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesButtonPanel_unreadStoryCountPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static unreadStoryCountPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static unreadStoryCountPanel_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, "background">;
    static unreadStoryCountPanel_text_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "store_button" | "store_error_button">;
    static storeButtonPanel_storeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeButtonPanel_storeErrorButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeErrorButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeErrorButtonContent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "marketplace_button_label">;
    static storeErrorButtonContent_marketplaceButtonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static settingsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlayButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static invitePlayersButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static quitButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static feedbackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static feedbackIconButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "feedback_button">;
    static feedbackIconButton_feedbackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static takeScreenshotGamepadButtonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "take_screenshot_icon" | "button_y">;
    static takeScreenshotGamepadButtonContent_buttonY<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static takeScreenshotGamepadButtonContent_takeScreenshotIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static takeScreenshotGamepadButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static takeScreenshotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static pauseScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static pauseScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helpers" | "pause_screen_main_panels" | "keyboard_helpers">;
    static pauseScreenContent_pauseScreenMainPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pauseScreenContent_gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pauseScreenContent_keyboardHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pauseScreenMainPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "menu" | "info_panel">;
    static pauseScreenMainPanels_menu<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pauseScreenMainPanels_infoPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static socialButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "friendsbutton_panel" | "invitebutton_panel">;
    static socialButtonsPanel_friendsbuttonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "vertical_padding_1" | "friendsdrawer_button">;
    static socialButtonsPanel_friendsbuttonPanel_friendsdrawerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static socialButtonsPanel_friendsbuttonPanel_verticalPadding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static socialButtonsPanel_invitebuttonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "vertical_padding_2" | "invite_button">;
    static socialButtonsPanel_invitebuttonPanel_inviteButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static socialButtonsPanel_invitebuttonPanel_verticalPadding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pauseScreenMenu<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "filler" | "trialTime" | "the_rest_panel" | "the_icon_panel">;
    static pauseScreenMenu_filler<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pauseScreenMenu_trialTime<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static pauseScreenMenu_theRestPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pauseScreenMenu_theIconPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theRestPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "skin_panel" | "fill_1" | "fill_2" | "pause_menu" | "fill_3">;
    static theRestPanel_fill1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theRestPanel_pauseMenu<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theRestPanel_fill2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theRestPanel_skinPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theRestPanel_fill3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pausedText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static pausedTextPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "pause">;
    static pausedTextPanel_pause<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static theIconPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "stacked_column" | "padding_bottom">;
    static theIconPanel_stackedColumn<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "side_padding" | "feedback_btn" | "feedback_padding" | "take_screenshot_btn" | "screenshot_padding" | "profile_btn_padding_left" | "profile_btn" | "profile_btn_padding_right" | "pause_padding_left" | "pause_text_panel" | "pause_padding_right">;
    static theIconPanel_stackedColumn_sidePadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theIconPanel_stackedColumn_feedbackBtn<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "feedback_icon_button">;
    static theIconPanel_stackedColumn_feedbackBtn_feedbackIconButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theIconPanel_stackedColumn_feedbackPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theIconPanel_stackedColumn_takeScreenshotBtn<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "take_screenshot_gamepad_button" | "take_screenshot_button">;
    static theIconPanel_stackedColumn_takeScreenshotBtn_takeScreenshotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static theIconPanel_stackedColumn_takeScreenshotBtn_takeScreenshotGamepadButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static theIconPanel_stackedColumn_screenshotPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theIconPanel_stackedColumn_profileBtnPaddingLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theIconPanel_stackedColumn_profileBtn<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "profile_button">;
    static theIconPanel_stackedColumn_profileBtn_profileButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static theIconPanel_stackedColumn_profileBtnPaddingRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theIconPanel_stackedColumn_pausePaddingLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theIconPanel_stackedColumn_pauseTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "pause_text">;
    static theIconPanel_stackedColumn_pauseTextPanel_pauseText<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static theIconPanel_stackedColumn_pausePaddingRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static theIconPanel_paddingBottom<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transparentBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static nonTransparentBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static menuTheRestPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "menu_button_control">;
    static menuTheRestPanel_menuButtonControl<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static menuButtonControl<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "menu_background">;
    static menuButtonControl_menuBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static menuBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "button_panel">;
    static menuBackground_buttonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "server" | "settings" | "quit_button" | "return" | "return_to_game_button" | "realms_stories_button_panel" | "store_button_panel" | "settings_button" | "buy_button" | "realms_stories" | "buy">;
    static menuBackground_buttonPanel_returnToGameButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static menuBackground_buttonPanel_return<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static menuBackground_buttonPanel_realmsStoriesButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static menuBackground_buttonPanel_realmsStories<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static menuBackground_buttonPanel_settingsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static menuBackground_buttonPanel_settings<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static menuBackground_buttonPanel_buyButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static menuBackground_buttonPanel_buy<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static menuBackground_buttonPanel_storeButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static menuBackground_buttonPanel_server<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static menuBackground_buttonPanel_quitButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoPanelContentList<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "vertical_padding" | "player_list_scrolling_panel">;
    static infoPanelContentList_playerListScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoPanelContentList_verticalPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoPanelBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "info_panel_background" | "info_panel_list">;
    static infoPanel_infoPanelBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoPanel_infoPanelList<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerPanelBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "player_list_scrolling_panel">;
    static playerPanelBackground_playerListScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerList<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "vertical_padding_0" | "social_buttons_panel" | "players_label" | "vertical_padding_4" | "players_grid_panel" | "vertical_padding_5" | "invite_players_button_panel" | "vertical_padding_6" | "disconnected_from_multiplayer_label_panel" | "vertical_padding_7">;
    static playerList_verticalPadding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerList_socialButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerList_playersLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerList_verticalPadding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerList_playersGridPanel<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerList_verticalPadding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerList_invitePlayersButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerList_verticalPadding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerList_disconnectedFromMultiplayerLabelPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerList_verticalPadding7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerLists<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "normal_list" | "scoreboard_list">;
    static playerLists_normalList<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerLists_scoreboardList<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerListScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static disconnectedLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static disconnectedFromMultiplayerLabelPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "disconnected_from_multiplayer" | "disconnected_from_crossplatform_multiplayer" | "disconnected_from_xbox_live_label" | "disconnected_from_third_party_label" | "disconnected_from_adhoc_label">;
    static disconnectedFromMultiplayerLabelPanel_disconnectedFromXboxLiveLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static disconnectedFromMultiplayerLabelPanel_disconnectedFromThirdPartyLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static disconnectedFromMultiplayerLabelPanel_disconnectedFromAdhocLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static disconnectedFromMultiplayerLabelPanel_disconnectedFromCrossplatformMultiplayer<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static disconnectedFromMultiplayerLabelPanel_disconnectedFromMultiplayer<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static invitePlayersButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "invite_players_button">;
    static invitePlayersButtonPanel_invitePlayersButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static ipLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static playersLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static playersGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "player_grid_item_content">;
    static playerGridItem_playerGridItemContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerGridItemContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "player_button_panel" | "player_permission_button_panel">;
    static playerGridItemContent_playerButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "player_button_banner" | "player_permission_button_padding">;
    static playerGridItemContent_playerButtonPanel_playerButtonBanner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "player_banner" | "player_button">;
    static playerGridItemContent_playerButtonPanel_playerButtonBanner_playerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerGridItemContent_playerButtonPanel_playerButtonBanner_playerBanner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerGridItemContent_playerButtonPanel_playerPermissionButtonPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerGridItemContent_playerPermissionButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "player_permission_button">;
    static playerGridItemContent_playerPermissionButtonPanel_playerPermissionButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerPermissionButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerPermissionButtonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "permission_icon_image">;
    static playerPermissionButtonContent_permissionIconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "player_gamertag" | "platform_icon" | "player_pic_panel">;
    static playerButtonContent_playerPicPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerButtonContent_playerGamertag<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerButtonContent_platformIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerBanner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerPicPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "player_gamer_pic" | "player_local_icon">;
    static playerPicPanel_playerGamerPic<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerPicPanel_playerLocalIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerLocalIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerGamerPic<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "player_panel_black_border">;
    static playerGamerPic_playerPanelBlackBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gametagWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamertag">;
    static gametagWrapper_gamertag<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "platform_icon">;
    static platformIconPanel_platformIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerGamertag<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerGridBannerNoFocus<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerGridBanner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "focus_border_button" | "player_grid_banner_no_focus">;
    static playerGridBanner_playerGridBannerNoFocus<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "player_button_content">;
    static playerGridBanner_playerGridBannerNoFocus_playerButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerGridBanner_focusBorderButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static focusBorderButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static focusBorderButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static focusBorderButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static focusBorderButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static focusBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pauseScreenBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static fillerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_y">;
    static gamepadHelpers_gamepadHelperY<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "keyboard_helper_keys">;
    static keyboardHelpers_keyboardHelperKeys<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Pdp extends Class {
    static downloadProgress<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "stacker">;
    static downloadProgress_stacker<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "sizer_text" | "sizer_bar">;
    static downloadProgress_stacker_sizerText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "download_progress_text">;
    static downloadProgress_stacker_sizerText_downloadProgressText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static downloadProgress_stacker_sizerBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "download_progress_bar">;
    static downloadProgress_stacker_sizerBar_downloadProgressBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryBoxButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "focus_border" | "buttons_panel" | "download_buttons_panel">;
    static summaryBoxButtonPanel_buttonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryBoxButtonPanel_downloadButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryBoxButtonPanel_focusBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static interactionButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "line1_panel">;
    static interactionButtonContent_line1Panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "upsell_text">;
    static interactionButtonContent_line1Panel_upsellText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static interactionButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "focus_border" | "content_action_button" | "progress_bar">;
    static interactionButtonPanel_contentActionButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static interactionButtonPanel_progressBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static interactionButtonPanel_focusBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static downloadProgressSmall<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "stacker">;
    static downloadProgressSmall_stacker<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "sizer_text" | "sizer_bar">;
    static downloadProgressSmall_stacker_sizerText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "download_progress_text">;
    static downloadProgressSmall_stacker_sizerText_downloadProgressText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static downloadProgressSmall_stacker_sizerBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "download_progress_bar">;
    static downloadProgressSmall_stacker_sizerBar_downloadProgressBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressLoadingAnim<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static focusBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static focusBorder_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "loading_anim">;
    static focusBorder_default_loadingAnim<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static focusBorder_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "loading_anim">;
    static focusBorder_hover_loadingAnim<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static focusBorder_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "loading_anim">;
    static focusBorder_pressed_loadingAnim<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseButtonBase<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static deactivatedPurchaseButtonBase<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static downloadButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "progress_panel">;
    static downloadButtonsPanel_progressPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "progress_bar">;
    static downloadButtonsPanel_progressPanel_progressBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smoothPurchaseButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "activated_purchase_buttons_panel" | "deactivated_purchase_buttons_panel">;
    static smoothPurchaseButtonsPanel_activatedPurchaseButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smoothPurchaseButtonsPanel_deactivatedPurchaseButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smoothButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "purchase_buttons_panel" | "interact_filling_button" | "interact_exit_world_filling_button">;
    static smoothButtonsPanel_purchaseButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smoothButtonsPanel_interactFillingButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static smoothButtonsPanel_interactExitWorldFillingButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static disabledInteractLabelFormfitting<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad" | "info_icon" | "info_icon_pad" | "interact_label_panel">;
    static disabledInteractLabelFormfitting_infoIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static disabledInteractLabelFormfitting_infoIconPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static disabledInteractLabelFormfitting_interactLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "interact_label_text_left">;
    static disabledInteractLabelFormfitting_interactLabelPanel_interactLabelTextLeft<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static disabledInteractLabelFormfitting_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static interactLabelText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static activatedSmoothPurchaseButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "purchase_coins_button_panel" | "pad_h1" | "purchase_currency_button_panel">;
    static activatedSmoothPurchaseButtonsPanel_purchaseCoinsButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "smooth_purchase_with_coins_button">;
    static activatedSmoothPurchaseButtonsPanel_purchaseCoinsButtonPanel_smoothPurchaseWithCoinsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static activatedSmoothPurchaseButtonsPanel_padH1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static activatedSmoothPurchaseButtonsPanel_purchaseCurrencyButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "purchase_with_currency_button">;
    static activatedSmoothPurchaseButtonsPanel_purchaseCurrencyButtonPanel_purchaseWithCurrencyButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static deactivatedSmoothPurchaseButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "purchase_coins_button_panel" | "pad_h1" | "purchase_currency_button_panel">;
    static deactivatedSmoothPurchaseButtonsPanel_purchaseCoinsButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "deactivated_smooth_purchase_with_coins_button">;
    static deactivatedSmoothPurchaseButtonsPanel_purchaseCoinsButtonPanel_deactivatedSmoothPurchaseWithCoinsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static deactivatedSmoothPurchaseButtonsPanel_padH1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static deactivatedSmoothPurchaseButtonsPanel_purchaseCurrencyButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "deactivated_purchase_with_currency_button">;
    static deactivatedSmoothPurchaseButtonsPanel_purchaseCurrencyButtonPanel_deactivatedPurchaseWithCurrencyButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static smoothSaveShareButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "save_button" | "share_button" | "pad_1" | "pad_0">;
    static smoothSaveShareButtonPanel_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smoothSaveShareButtonPanel_shareButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static smoothSaveShareButtonPanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smoothSaveShareButtonPanel_saveButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static currencyPurchaseLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "currency_purchase_label_text">;
    static currencyPurchaseLabel_currencyPurchaseLabelText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static coinImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smoothCurrencyPurchaseLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "currency_purchase_label_text">;
    static smoothCurrencyPurchaseLabel_currencyPurchaseLabelText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeButtonMarkdownBackground<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "triangle_panel" | "banner">;
    static largeButtonMarkdownBackground_banner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeButtonMarkdownBackground_trianglePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "triangle">;
    static largeButtonMarkdownBackground_trianglePanel_triangle<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static discountLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "icon_panel" | "label_panel">;
    static discountLabel_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static discountLabel_labelPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static discountLabel_iconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static discountLabel_iconPanel_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static coinPurchaseLabelText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static smoothCoinPurchaseLabelFormfitting<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad" | "sales_banner_offset_panel" | "markdown_panel" | "fill_pad_left" | "left_coin_image_offset_panel" | "coin_purchase_label_panel" | "right_coin_image_offset_panel" | "fill_pad_right">;
    static smoothCoinPurchaseLabelFormfitting_salesBannerOffsetPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "sales_banner_panel">;
    static smoothCoinPurchaseLabelFormfitting_salesBannerOffsetPanel_salesBannerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "markdown_banner">;
    static smoothCoinPurchaseLabelFormfitting_salesBannerOffsetPanel_salesBannerPanel_markdownBanner<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smoothCoinPurchaseLabelFormfitting_markdownPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "markdown_label">;
    static smoothCoinPurchaseLabelFormfitting_markdownPanel_markdownLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smoothCoinPurchaseLabelFormfitting_fillPadLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smoothCoinPurchaseLabelFormfitting_leftCoinImageOffsetPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "coin">;
    static smoothCoinPurchaseLabelFormfitting_leftCoinImageOffsetPanel_coin<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smoothCoinPurchaseLabelFormfitting_coinPurchaseLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "coin_purchase_label_text_left">;
    static smoothCoinPurchaseLabelFormfitting_coinPurchaseLabelPanel_coinPurchaseLabelTextLeft<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static smoothCoinPurchaseLabelFormfitting_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smoothCoinPurchaseLabelFormfitting_rightCoinImageOffsetPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "coin">;
    static smoothCoinPurchaseLabelFormfitting_rightCoinImageOffsetPanel_coin<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smoothCoinPurchaseLabelFormfitting_fillPadRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static disabledSmoothCoinPurchaseLabelFormfitting<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad" | "info_icon" | "info_icon_pad" | "sales_banner_offset_panel" | "markdown_panel" | "fill_pad_left" | "left_coin_image_offset_panel" | "coin_purchase_label_panel" | "right_coin_image_offset_panel" | "fill_pad_right">;
    static disabledSmoothCoinPurchaseLabelFormfitting_salesBannerOffsetPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "sales_banner_panel">;
    static disabledSmoothCoinPurchaseLabelFormfitting_salesBannerOffsetPanel_salesBannerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "markdown_banner">;
    static disabledSmoothCoinPurchaseLabelFormfitting_salesBannerOffsetPanel_salesBannerPanel_markdownBanner<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static disabledSmoothCoinPurchaseLabelFormfitting_markdownPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "markdown_label">;
    static disabledSmoothCoinPurchaseLabelFormfitting_markdownPanel_markdownLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static disabledSmoothCoinPurchaseLabelFormfitting_fillPadLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static disabledSmoothCoinPurchaseLabelFormfitting_infoIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static disabledSmoothCoinPurchaseLabelFormfitting_leftCoinImageOffsetPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "coin">;
    static disabledSmoothCoinPurchaseLabelFormfitting_leftCoinImageOffsetPanel_coin<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static disabledSmoothCoinPurchaseLabelFormfitting_infoIconPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static disabledSmoothCoinPurchaseLabelFormfitting_coinPurchaseLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "coin_purchase_label_text_left">;
    static disabledSmoothCoinPurchaseLabelFormfitting_coinPurchaseLabelPanel_coinPurchaseLabelTextLeft<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static disabledSmoothCoinPurchaseLabelFormfitting_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static disabledSmoothCoinPurchaseLabelFormfitting_rightCoinImageOffsetPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "coin">;
    static disabledSmoothCoinPurchaseLabelFormfitting_rightCoinImageOffsetPanel_coin<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static disabledSmoothCoinPurchaseLabelFormfitting_fillPadRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static shareIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static shareLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "share_image_offset_panel">;
    static shareLabel_shareImageOffsetPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "link_share">;
    static shareLabel_shareImageOffsetPanel_linkShare<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "heart_image" | "progress_loading">;
    static saveLabelPanel_heartImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveLabelPanel_progressLoading<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "save_image_offset_panel">;
    static saveLabel_saveImageOffsetPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "full_heart" | "empty_heart">;
    static saveLabel_saveImageOffsetPanel_fullHeart<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveLabel_saveImageOffsetPanel_emptyHeart<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeButtonCoinPurchaseLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_coin_image_offset_panel" | "coin_purchase_label_panel" | "right_coin_image_offset_panel" | "markdown_banner_filler_panel" | "center_markdown_panel" | "sales_padding_0" | "price_markdown_panel" | "sales_padding_1" | "fill_padding_1">;
    static largeButtonCoinPurchaseLabel_markdownBannerFillerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeButtonCoinPurchaseLabel_centerMarkdownPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "markdown_banner">;
    static largeButtonCoinPurchaseLabel_centerMarkdownPanel_markdownBanner<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeButtonCoinPurchaseLabel_salesPadding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeButtonCoinPurchaseLabel_priceMarkdownPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "price_markdown_label">;
    static largeButtonCoinPurchaseLabel_priceMarkdownPanel_priceMarkdownLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeButtonCoinPurchaseLabel_salesPadding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeButtonCoinPurchaseLabel_leftCoinImageOffsetPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "coin">;
    static largeButtonCoinPurchaseLabel_leftCoinImageOffsetPanel_coin<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeButtonCoinPurchaseLabel_coinPurchaseLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "coin_purchase_label_text">;
    static largeButtonCoinPurchaseLabel_coinPurchaseLabelPanel_coinPurchaseLabelText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeButtonCoinPurchaseLabel_rightCoinImageOffsetPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "coin">;
    static largeButtonCoinPurchaseLabel_rightCoinImageOffsetPanel_coin<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeButtonCoinPurchaseLabel_fillPadding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static priceMarkdownPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_price">;
    static priceMarkdownPanel_offerPrice<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, "text_strike_through">;
    static priceMarkdownPanel_offerPrice_textStrikeThrough<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalPadding2px<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalPadding4px<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalPaddingFill<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalPadding2px<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalPadding4px<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalPadding8px<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalPaddingFill<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emptyContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "header_label">;
    static sectionHeader_headerLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentSectionBg<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "section_header" | "pad" | "bg_and_content">;
    static contentSectionBg_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentSectionBg_sectionHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentSectionBg_bgAndContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bg">;
    static contentSectionBg_bgAndContent_bg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "$content">;
    static contentSectionBg_bgAndContent_bg_$content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentSectionBoarderBg<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad" | "divider_3" | "pad_3" | "bg_and_content">;
    static contentSectionBoarderBg_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentSectionBoarderBg_bgAndContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bg">;
    static contentSectionBoarderBg_bgAndContent_bg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "inner">;
    static contentSectionBoarderBg_bgAndContent_bg_inner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "$content">;
    static contentSectionBoarderBg_bgAndContent_bg_inner_$content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentSectionBoarderBg_pad3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentSectionBoarderBg_divider3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryFactoryObject<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "summary" | "navigation_tab_section" | "update_notification_section">;
    static summaryFactoryObject_summary<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryFactoryObject_navigationTabSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryFactoryObject_updateNotificationSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotCarouselFactoryObject<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider_3" | "pad_3" | "resource_pack_content_panel">;
    static screenshotCarouselFactoryObject_resourcePackContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotCarouselFactoryObject_pad3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotCarouselFactoryObject_divider3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageGalleryFactoryObject<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "resource_pack_content_panel">;
    static imageGalleryFactoryObject_resourcePackContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftTextRightImageFactoryObject<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "resource_pack_content_panel">;
    static leftTextRightImageFactoryObject_resourcePackContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightTextLeftImageFactoryObject<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "resource_pack_content_panel">;
    static rightTextLeftImageFactoryObject_resourcePackContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPackSectionFactoryObject<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "skin_pack_section_factory_content">;
    static skinPackSectionFactoryObject_skinPackSectionFactoryContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider_3" | "pad_3" | "skin_pack_content_panel">;
    static skinPackSectionFactoryObject_skinPackSectionFactoryContent_skinPackContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPackSectionFactoryObject_skinPackSectionFactoryContent_pad3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPackSectionFactoryObject_skinPackSectionFactoryContent_divider3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panoramaViewFactoryObject<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider_3" | "pad_3" | "panorama_view_content_panel">;
    static panoramaViewFactoryObject_panoramaViewContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panoramaViewFactoryObject_pad3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panoramaViewFactoryObject_divider3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsFactoryObject<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "rating_factory_object_content">;
    static ratingsFactoryObject_ratingFactoryObjectContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static focusContainerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default">;
    static focusContainerButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleSummaryFactoryObject<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bundle_summary_factory_object_content">;
    static bundleSummaryFactoryObject_bundleSummaryFactoryObjectContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pdpCycleOfferRowContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider_3" | "pad_3" | "store_row_panel">;
    static pdpCycleOfferRowContent_storeRowPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pdpCycleOfferRowContent_pad3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pdpCycleOfferRowContent_divider3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pdpCycleOfferRowSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recentlyViewedViewedFactoryObject<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static scalingRating<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "empty_rating">;
    static scalingRating_emptyRating<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "full_rating">;
    static scalingRating_emptyRating_fullRating<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static scalingRatingNew<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "empty_rating">;
    static scalingRatingNew_emptyRating<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "full_rating">;
    static scalingRatingNew_emptyRating_fullRating<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static chartSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack">;
    static chartSection_stack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "percent" | "pad_1" | "pad_0" | "star_number_panel" | "star_panel" | "bar_panel">;
    static chartSection_stack_starNumberPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "star_number">;
    static chartSection_stack_starNumberPanel_starNumber<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static chartSection_stack_starPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "star_img">;
    static chartSection_stack_starPanel_starImg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static chartSection_stack_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chartSection_stack_barPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bar">;
    static chartSection_stack_barPanel_bar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "full_bar">;
    static chartSection_stack_barPanel_bar_fullBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static chartSection_stack_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chartSection_stack_percent<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsChart<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "5_star" | "4_star" | "3_star" | "2_star" | "1_star">;
    static ratingsChart_5Star<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsChart_4Star<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsChart_3Star<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsChart_2Star<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsChart_1Star<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsChartPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "ratings_chart_content">;
    static ratingsChartPanel_ratingsChartContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title" | "pad_2" | "pad_3" | "pad_1" | "pad_0" | "rating_panel" | "rating_text_panel" | "count_panel" | "chart">;
    static ratingsChartPanel_ratingsChartContent_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsChartPanel_ratingsChartContent_title<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_text">;
    static ratingsChartPanel_ratingsChartContent_title_titleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsChartPanel_ratingsChartContent_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsChartPanel_ratingsChartContent_ratingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "rating">;
    static ratingsChartPanel_ratingsChartContent_ratingPanel_rating<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad" | "rating_bar">;
    static ratingsChartPanel_ratingsChartContent_ratingPanel_rating_ratingBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsChartPanel_ratingsChartContent_ratingPanel_rating_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsChartPanel_ratingsChartContent_ratingTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "rating_text">;
    static ratingsChartPanel_ratingsChartContent_ratingTextPanel_ratingText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsChartPanel_ratingsChartContent_countPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "count">;
    static ratingsChartPanel_ratingsChartContent_countPanel_count<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsChartPanel_ratingsChartContent_pad2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsChartPanel_ratingsChartContent_chart<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsChartPanel_ratingsChartContent_pad3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "divider" | "ratings_panel_focus_point" | "ratings_full_panel">;
    static ratingsBox_ratingsPanelFocusPoint<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsBox_ratingsFullPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "ratings_chart_and_button">;
    static ratingsBox_ratingsFullPanel_ratingsChartAndButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad_1" | "chart">;
    static ratingsBox_ratingsFullPanel_ratingsChartAndButton_chart<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsBox_ratingsFullPanel_ratingsChartAndButton_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsBox_divider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static userRatingStarButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "hover">;
    static userRatingStarButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "default_user_rating_star">;
    static userRatingStarButton_default_defaultUserRatingStar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static userRatingStarButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hover_user_rating_star">;
    static userRatingStarButton_hover_hoverUserRatingStar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static userRatingStarListGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsInteractPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title_text" | "pad_1" | "pad_vertical_4px" | "rating_stars_and_button_panel" | "pad_vertical_8px" | "fill_pad" | "send_feedback_button">;
    static ratingsInteractPanel_titleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsInteractPanel_padVertical4px<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsInteractPanel_ratingStarsAndButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "fill_stars" | "pad_3_percent" | "submit_button_panel">;
    static ratingsInteractPanel_ratingStarsAndButtonPanel_fillStars<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "rating_buttons">;
    static ratingsInteractPanel_ratingStarsAndButtonPanel_fillStars_ratingButtons<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsInteractPanel_ratingStarsAndButtonPanel_pad3Percent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsInteractPanel_ratingStarsAndButtonPanel_submitButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "submit">;
    static ratingsInteractPanel_ratingStarsAndButtonPanel_submitButtonPanel_submit<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsInteractPanel_padVertical8px<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsInteractPanel_fillPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static ratingsInteractPanel_fillPad_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsInteractPanel_sendFeedbackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsInteractPanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsInfoPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "ratings" | "ratings_right">;
    static ratingsInfoPanel_ratings<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsInfoPanel_ratingsRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "ratings_interact_panel">;
    static ratingsInfoPanel_ratingsRight_ratingsInteractPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panoramaViewContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "panorama_panel">;
    static panoramaViewContent_panoramaPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "panorama_content">;
    static panoramaViewContent_panoramaPanel_panoramaContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skins<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPackContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourcePackContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "screenshots">;
    static resourcePackContent_screenshots<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageRowLeftTextContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "buffer_panel_front" | "text_section" | "buffer_panel_mid" | "screenshots_single" | "buffer_panel_back">;
    static imageRowLeftTextContent_bufferPanelFront<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageRowLeftTextContent_textSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_header" | "left_text" | "buffer_panel_bottom">;
    static imageRowLeftTextContent_textSection_leftHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageRowLeftTextContent_textSection_leftText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageRowLeftTextContent_textSection_bufferPanelBottom<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageRowLeftTextContent_bufferPanelMid<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageRowLeftTextContent_screenshotsSingle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageRowLeftTextContent_bufferPanelBack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageRowRightTextContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "buffer_panel_front" | "text_section" | "buffer_panel_mid" | "screenshots_single" | "buffer_panel_back">;
    static imageRowRightTextContent_bufferPanelFront<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageRowRightTextContent_screenshotsSingle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageRowRightTextContent_bufferPanelMid<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageRowRightTextContent_textSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "buffer_panel_bottom" | "right_header" | "right_text">;
    static imageRowRightTextContent_textSection_rightHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageRowRightTextContent_textSection_rightText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageRowRightTextContent_textSection_bufferPanelBottom<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageRowRightTextContent_bufferPanelBack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageRowContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "screenshots_triple">;
    static imageRowContent_screenshotsTriple<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playButton<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbExpiration<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background">;
    static csbExpiration_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "content_stack_panel">;
    static csbExpiration_background_contentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "icon_wrapper" | "text_wrapper">;
    static csbExpiration_background_contentStackPanel_iconWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static csbExpiration_background_contentStackPanel_iconWrapper_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbExpiration_background_contentStackPanel_textWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static csbExpiration_background_contentStackPanel_textWrapper_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentLeftSide<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad_left" | "full_content">;
    static summaryContentLeftSide_padLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentLeftSide_fullContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top" | "bottom">;
    static summaryContentLeftSide_fullContent_top<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "image" | "divider" | "info">;
    static summaryContentLeftSide_fullContent_top_image<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "key_image">;
    static summaryContentLeftSide_fullContent_top_image_keyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "border" | "csb_expiration_banner" | "video_overlay_button" | "rtx_label">;
    static summaryContentLeftSide_fullContent_top_image_keyImage_border<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentLeftSide_fullContent_top_image_keyImage_csbExpirationBanner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentLeftSide_fullContent_top_image_keyImage_videoOverlayButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "mask" | "hover">;
    static summaryContentLeftSide_fullContent_top_image_keyImage_videoOverlayButton_mask<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentLeftSide_fullContent_top_image_keyImage_videoOverlayButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentLeftSide_fullContent_top_image_keyImage_videoOverlayButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentLeftSide_fullContent_top_image_keyImage_rtxLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentLeftSide_fullContent_top_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentLeftSide_fullContent_top_info<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad_fill" | "summary_title_and_author_panel" | "glyph_section" | "ratings_summary">;
    static summaryContentLeftSide_fullContent_top_info_summaryTitleAndAuthorPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentLeftSide_fullContent_top_info_padFill<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentLeftSide_fullContent_top_info_glyphSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "glyph_section_panel">;
    static summaryContentLeftSide_fullContent_top_info_glyphSection_glyphSectionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentLeftSide_fullContent_top_info_ratingsSummary<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "ratings_display">;
    static summaryContentLeftSide_fullContent_top_info_ratingsSummary_ratingsDisplay<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "rating_stars_panel" | "summary_rating_button">;
    static summaryContentLeftSide_fullContent_top_info_ratingsSummary_ratingsDisplay_ratingStarsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "rating">;
    static summaryContentLeftSide_fullContent_top_info_ratingsSummary_ratingsDisplay_ratingStarsPanel_rating<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentLeftSide_fullContent_top_info_ratingsSummary_ratingsDisplay_summaryRatingButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentLeftSide_fullContent_bottom<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static offerTitleLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleAndAuthorPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title_panel" | "author_button_panel">;
    static titleAndAuthorPanel_titlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleAndAuthorPanel_authorButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "summary_author_button">;
    static titleAndAuthorPanel_authorButtonPanel_summaryAuthorButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad_0" | "warning_icon" | "warning_text_panel">;
    static warningStackPanel_warningIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningStackPanel_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningStackPanel_warningTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "warning_text">;
    static warningStackPanel_warningTextPanel_warningText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "content_stack_panel">;
    static warningPanel_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningPanel_contentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionToggleShowButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "warning_icon" | "description_bottom_right_button_border" | "description_toggle_show_button">;
    static descriptionToggleShowButtonPanel_descriptionBottomRightButtonBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionToggleShowButtonPanel_descriptionToggleShowButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionToggleShowButtonPanel_warningIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphCountLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphCountUnderlineButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphCountHoverUnderlineButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "glyph_count_underline_button" | "glyph_hover_popup">;
    static glyphCountHoverUnderlineButtonPanel_glyphHoverPopup<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphCountHoverUnderlineButtonPanel_glyphCountUnderlineButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphIconWithCount<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "horizontal_padding" | "glyph_icon" | "item_glyph_count_panel_label">;
    static glyphIconWithCount_glyphIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphIconWithCount_horizontalPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphIconWithCount_itemGlyphCountPanelLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphPanelHoverPopup<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphPanelMashupHoverPopup<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mashupGlyphTooltipContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offset_panel" | "mashup_text_row" | "mashup_line_two">;
    static mashupGlyphTooltipContent_mashupTextRow<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "lightbulb_icon" | "mashup_line_one">;
    static mashupGlyphTooltipContent_mashupTextRow_lightbulbIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mashupGlyphTooltipContent_mashupTextRow_mashupLineOne<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mashupGlyphTooltipContent_mashupLineTwo<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mashupGlyphTooltipContent_offsetPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "basic_vertical_glyph_section_panel">;
    static mashupGlyphTooltipContent_offsetPanel_basicVerticalGlyphSectionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphSectionMashup<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphSectionSkin<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphSectionResourcePack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphSectionWorld<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphSectionAddon<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static basicVerticalGlyphSectionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "glyph_section_skin" | "glyph_section_resource_pack" | "glyph_section_world" | "glyph_section_addon">;
    static basicVerticalGlyphSectionPanel_glyphSectionSkin<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static basicVerticalGlyphSectionPanel_glyphSectionWorld<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static basicVerticalGlyphSectionPanel_glyphSectionResourcePack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static basicVerticalGlyphSectionPanel_glyphSectionAddon<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalGlyphSectionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "basic_vertical_glyph_section_panel" | "glyph_section_mashup">;
    static verticalGlyphSectionPanel_glyphSectionMashup<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalGlyphSectionPanel_basicVerticalGlyphSectionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryTextPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad_2" | "pad_1" | "pad_0" | "top_interact_button_stack" | "apply_to_realm_panel" | "in_csb_panel" | "progress_loading_anim_panel" | "disclaimer_panel" | "save_share_button_panel">;
    static summaryTextPanel_topInteractButtonStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_interact">;
    static summaryTextPanel_topInteractButtonStack_topInteract<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryTextPanel_applyToRealmPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "apply_to_realm_button">;
    static summaryTextPanel_applyToRealmPanel_applyToRealmButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryTextPanel_inCsbPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "in_csb_button">;
    static summaryTextPanel_inCsbPanel_inCsbButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryTextPanel_progressLoadingAnimPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_anim">;
    static summaryTextPanel_progressLoadingAnimPanel_progressLoadingAnim<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryTextPanel_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryTextPanel_disclaimerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryTextPanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryTextPanel_saveShareButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryTextPanel_pad2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoBulbImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoBulbImageSmall<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsIncompatableContent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "realms_content_stack_panel">;
    static realmsIncompatableContent_realmsContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "info_bulb_image" | "realms_incompatable_button_label">;
    static realmsIncompatableContent_realmsContentStackPanel_infoBulbImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsIncompatableContent_realmsContentStackPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsIncompatableContent_realmsContentStackPanel_realmsIncompatableButtonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static applyToRealmButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static inRealmsPlusButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "buffer_panel" | "realm_icon_panel" | "alignment_text_panel">;
    static inRealmsPlusButtonContent_realmIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_banner" | "realms_plus_normal" | "realms_plus_hover">;
    static inRealmsPlusButtonContent_realmIconPanel_realmsBanner<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inRealmsPlusButtonContent_realmIconPanel_realmsPlusNormal<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inRealmsPlusButtonContent_realmIconPanel_realmsPlusHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inRealmsPlusButtonContent_bufferPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inRealmsPlusButtonContent_alignmentTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static inRealmsPlusButtonContent_alignmentTextPanel_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static inCsbButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static inRealmsPlusButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static readMoreButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static readMoreButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static readMoreButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static readMoreButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentRightSide<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "text" | "pad_middle" | "entitlements_progress_panel" | "pad_right">;
    static summaryContentRightSide_padMiddle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentRightSide_text<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentRightSide_entitlementsProgressPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading">;
    static summaryContentRightSide_entitlementsProgressPanel_progressLoading<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentRightSide_padRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentWholeStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider_panel" | "left_side" | "right_side">;
    static summaryContentWholeStackPanel_leftSide<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentWholeStackPanel_dividerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentWholeStackPanel_rightSide<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider_3" | "pad_3" | "pad_top" | "summary_content_whole_stack">;
    static summaryContentPanel_padTop<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentPanel_summaryContentWholeStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentPanel_pad3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static summaryContentPanel_divider3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static appearanceStatusImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "limited_status_image" | "no_restrictions_status_image">;
    static appearanceStatusImagePanel_limitedStatusImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static appearanceStatusImagePanel_noRestrictionsStatusImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static appearanceStatusContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "appearance_status_image_panel" | "last_update_panel">;
    static appearanceStatusContent_appearanceStatusImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static appearanceStatusContent_lastUpdatePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "last_update_label">;
    static appearanceStatusContent_lastUpdatePanel_lastUpdateLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicTooltipNotificationPanel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static dynamicTooltipNotificationPanel_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicTooltipNotificationPanel_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicTooltipNotificationPanel_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateNotificationContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "status" | "dynamic_tooltip_notification_panel">;
    static updateNotificationContent_dynamicTooltipNotificationPanel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateNotificationContent_status<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateNotificationStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content" | "pad_1" | "pad_0">;
    static updateNotificationStackPanel_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateNotificationStackPanel_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateNotificationStackPanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tagBase<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tagButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button">;
    static tagButtonPanel_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "label" | "pressed" | "hover">;
    static tagButtonPanel_button_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tagButtonPanel_button_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tagButtonPanel_button_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tagButtonPanel_button_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static tagRowFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerCountButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "player_count_button" | "comma">;
    static playerCountButtonPanel_playerCountButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerCountButtonPanel_comma<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerCountFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static languageButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "comma" | "language_button">;
    static languageButtonPanel_languageButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static languageButtonPanel_comma<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static languageRowFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "description_stack_panel">;
    static descriptionInnerPanel_descriptionStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider_panel" | "pad_2" | "pad_3" | "pad_1" | "pad_0" | "title_stack_panel" | "description_text_panel_full" | "description_text_panel_collapsed" | "tags_panel" | "genre_panel" | "players_panel" | "languages_panel" | "show_less_button_panel">;
    static descriptionInnerPanel_descriptionStackPanel_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_titleStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider_panel" | "pad_1" | "pad_0" | "title_text_panel">;
    static descriptionInnerPanel_descriptionStackPanel_titleStackPanel_titleTextPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title_label" | "pad_0" | "title_label_icon">;
    static descriptionInnerPanel_descriptionStackPanel_titleStackPanel_titleTextPanel_titleLabelIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_titleStackPanel_titleTextPanel_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_titleStackPanel_titleTextPanel_titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_titleStackPanel_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_titleStackPanel_dividerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "divider">;
    static descriptionInnerPanel_descriptionStackPanel_titleStackPanel_dividerPanel_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_titleStackPanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_descriptionTextPanelFull<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "button_panel" | "description_text_expanded">;
    static descriptionInnerPanel_descriptionStackPanel_descriptionTextPanelFull_descriptionTextExpanded<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "description_label" | "pad_0" | "warning_panel">;
    static descriptionInnerPanel_descriptionStackPanel_descriptionTextPanelFull_descriptionTextExpanded_descriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_descriptionTextPanelFull_descriptionTextExpanded_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_descriptionTextPanelFull_descriptionTextExpanded_warningPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_descriptionTextPanelFull_buttonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_descriptionTextPanelCollapsed<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "description_text_collapsed" | "collapsed_show_more_panel">;
    static descriptionInnerPanel_descriptionStackPanel_descriptionTextPanelCollapsed_descriptionTextCollapsed<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_descriptionTextPanelCollapsed_collapsedShowMorePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_dividerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "divider">;
    static descriptionInnerPanel_descriptionStackPanel_dividerPanel_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_pad2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_tagsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad" | "label_text_panel" | "tag_factory_panel">;
    static descriptionInnerPanel_descriptionStackPanel_tagsPanel_labelTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label_text">;
    static descriptionInnerPanel_descriptionStackPanel_tagsPanel_labelTextPanel_labelText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_tagsPanel_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_tagsPanel_tagFactoryPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tags_factory_with_rows" | "tags_factory">;
    static descriptionInnerPanel_descriptionStackPanel_tagsPanel_tagFactoryPanel_tagsFactoryWithRows<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_tagsPanel_tagFactoryPanel_tagsFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_genrePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label_text" | "pad" | "text_panel">;
    static descriptionInnerPanel_descriptionStackPanel_genrePanel_labelText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_genrePanel_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_genrePanel_textPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text_stack_panel">;
    static descriptionInnerPanel_descriptionStackPanel_genrePanel_textPanel_textStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad_0" | "genre_button" | "slash_divider" | "subgenre_button">;
    static descriptionInnerPanel_descriptionStackPanel_genrePanel_textPanel_textStackPanel_genreButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_genrePanel_textPanel_textStackPanel_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_genrePanel_textPanel_textStackPanel_slashDivider<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_genrePanel_textPanel_textStackPanel_subgenreButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_playersPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label_text" | "pad" | "text_panel">;
    static descriptionInnerPanel_descriptionStackPanel_playersPanel_labelText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_playersPanel_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_playersPanel_textPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text_stack_panel">;
    static descriptionInnerPanel_descriptionStackPanel_playersPanel_textPanel_textStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "player_count_button_panel" | "note_text">;
    static descriptionInnerPanel_descriptionStackPanel_playersPanel_textPanel_textStackPanel_playerCountButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad" | "player_count_button_factory" | "player_count_range_panel">;
    static descriptionInnerPanel_descriptionStackPanel_playersPanel_textPanel_textStackPanel_playerCountButtonPanel_playerCountButtonFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_playersPanel_textPanel_textStackPanel_playerCountButtonPanel_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_playersPanel_textPanel_textStackPanel_playerCountButtonPanel_playerCountRangePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "player_count_range_text">;
    static descriptionInnerPanel_descriptionStackPanel_playersPanel_textPanel_textStackPanel_playerCountButtonPanel_playerCountRangePanel_playerCountRangeText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_playersPanel_textPanel_textStackPanel_noteText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_languagesPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad" | "label_text_panel" | "languages_factory">;
    static descriptionInnerPanel_descriptionStackPanel_languagesPanel_labelTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label_text">;
    static descriptionInnerPanel_descriptionStackPanel_languagesPanel_labelTextPanel_labelText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_languagesPanel_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_languagesPanel_languagesFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_pad3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionInnerPanel_descriptionStackPanel_showLessButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static changelogSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleThumbnail<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleThumbnailSectionContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bundle_thumbnail_grid">;
    static bundleThumbnailSectionContent_bundleThumbnailGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleThumbnailSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pricePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_3" | "coin_panel" | "coin_non_sale_price_label" | "price_padding" | "offer_prompt_panel">;
    static pricePanel_coinNonSalePriceLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pricePanel_pricePadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pricePanel_offerPromptPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_status_text">;
    static pricePanel_offerPromptPanel_offerStatusText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static pricePanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pricePanel_coinPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_coin_icon">;
    static pricePanel_coinPanel_offerCoinIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingAndCoinsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "price_panel" | "rating_panel" | "rating_padding_coin">;
    static ratingAndCoinsPanel_ratingPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingAndCoinsPanel_ratingPaddingCoin<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingAndCoinsPanel_pricePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleOfferTexture<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "texture">;
    static bundleOfferTexture_texture<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "border">;
    static bundleOfferTexture_texture_border<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleOfferInfo<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_padding" | "bottom_padding" | "glyph_section" | "offer_title_and_author_panel" | "glyph_description_padding" | "description_panel" | "description_padding" | "description_padding_bottom" | "rating_and_price_panel">;
    static bundleOfferInfo_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleOfferInfo_offerTitleAndAuthorPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleOfferInfo_glyphSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleOfferInfo_glyphDescriptionPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleOfferInfo_descriptionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleOfferInfo_descriptionPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleOfferInfo_descriptionPaddingBottom<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleOfferInfo_ratingAndPricePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleOfferInfo_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleOfferSummaryGridItemContent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "bundle_offer_pdp_panel">;
    static bundleOfferSummaryGridItemContent_bundleOfferPdpPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "focus_border" | "bundle_offer_content_panel">;
    static bundleOfferSummaryGridItemContent_bundleOfferPdpPanel_focusBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleOfferSummaryGridItemContent_bundleOfferPdpPanel_bundleOfferContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "right_padding" | "info" | "key_art" | "mid_padding">;
    static bundleOfferSummaryGridItemContent_bundleOfferPdpPanel_bundleOfferContentPanel_keyArt<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleOfferSummaryGridItemContent_bundleOfferPdpPanel_bundleOfferContentPanel_midPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleOfferSummaryGridItemContent_bundleOfferPdpPanel_bundleOfferContentPanel_info<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleOfferSummaryGridItemContent_bundleOfferPdpPanel_bundleOfferContentPanel_rightPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleOfferSummaryGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bundle_offer_summary_button">;
    static bundleOfferSummaryGridItem_bundleOfferSummaryButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleOfferContentSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bundle_grid">;
    static bundleOfferContentSection_bundleGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleSummarySectionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "divider_3" | "bundle_summary_section">;
    static bundleSummarySectionPanel_bundleSummarySection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "mid_padding" | "bundle_header_and_thumnails_section" | "bundle_offers_info_section" | "mid_padding_2" | "interact_panel">;
    static bundleSummarySectionPanel_bundleSummarySection_bundleHeaderAndThumnailsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleSummarySectionPanel_bundleSummarySection_midPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleSummarySectionPanel_bundleSummarySection_bundleOffersInfoSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleSummarySectionPanel_bundleSummarySection_midPadding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleSummarySectionPanel_bundleSummarySection_interactPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bundle_interact">;
    static bundleSummarySectionPanel_bundleSummarySection_interactPanel_bundleInteract<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleSummarySectionPanel_divider3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packIconAndCoinSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "price_panel" | "sales_banner_panel" | "pack_icons_panel" | "pack_icons_and_coin_padding">;
    static packIconAndCoinSection_salesBannerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "sales_banner">;
    static packIconAndCoinSection_salesBannerPanel_salesBanner<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packIconAndCoinSection_packIconsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "pack_icons_panel">;
    static packIconAndCoinSection_packIconsPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packIconAndCoinSection_packIconsPanel_packIconsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packIconAndCoinSection_packIconsAndCoinPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packIconAndCoinSection_pricePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pdpScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static mashupScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "header" | "popup_dialog_factory">;
    static mashupScreenContent_header<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mashupScreenContent_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static mashupScreenMain<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "progress_loading" | "pack_content">;
    static mashupScreenMain_packContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mashupScreenMain_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class PdpScreenshots extends Class {
    static bannerEmpty<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotCarousel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "screenshot_carousel_content">;
    static screenshotCarousel_screenshotCarouselContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cycle_pack_left_button" | "cycle_pack_right_button" | "screenshots_grid">;
    static screenshotCarousel_screenshotCarouselContent_cyclePackLeftButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotCarousel_screenshotCarouselContent_screenshotsGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotCarousel_screenshotCarouselContent_cyclePackRightButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_image_panel" | "middle_image_panel" | "right_image_panel">;
    static screenshotsGrid_leftImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsGrid_middleImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsGrid_rightImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "frame" | "progress_loading" | "screenshot_image">;
    static screenshotsGridItem_frame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "screenshot_button">;
    static screenshotsGridItem_frame_screenshotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "pressed" | "hover">;
    static screenshotsGridItem_frame_screenshotButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsGridItem_frame_screenshotButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsGridItem_screenshotImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsGridItem_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class PerfTurtle extends Class {
    static perfTurtlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack_panel" | "perf_turtle_background">;
    static perfTurtlePanel_perfTurtleBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static perfTurtlePanel_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "turtle_text" | "turtle">;
    static perfTurtlePanel_stackPanel_turtle<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static perfTurtlePanel_stackPanel_turtleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Permissions extends Class {
    static permissionsScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsScreenContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content_panel" | "top_bar_panel">;
    static permissionsScreenContent_topBarPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsScreenContent_contentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topBarPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label" | "gamepad_helper_b" | "back_button" | "top_bar">;
    static topBarPanel_topBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static topBarPanel_backButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static topBarPanel_gamepadHelperB<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topBarPanel_titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content_stack_panel">;
    static contentPanel_contentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "ip_label" | "content_padding_1" | "world_label" | "content_padding_2" | "player_and_permissions_panel">;
    static contentPanel_contentStackPanel_contentPadding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPanel_contentStackPanel_ipLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPanel_contentStackPanel_worldLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPanel_contentStackPanel_contentPadding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPanel_contentStackPanel_playerAndPermissionsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerAndPermissionsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "selector_area" | "content_area">;
    static playerAndPermissionsPanel_selectorArea<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerAndPermissionsPanel_contentArea<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorArea<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "player_scrolling_panel">;
    static selectorArea_playerScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentArea<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "inactive_modal_pane_fade" | "permissions_options_background">;
    static contentArea_permissionsOptionsBackground<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "permissions_options_background_image">;
    static contentArea_permissionsOptionsBackground_permissionsOptionsBackgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "permissions_options_scrolling_panel">;
    static contentArea_permissionsOptionsBackground_permissionsOptionsBackgroundImage_permissionsOptionsScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentArea_inactiveModalPaneFade<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static kickButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static banButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static playersGridPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "players_grid">;
    static playersGridPanel_playersGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static playersGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inactive_modal_pane_fade" | "player_toggle">;
    static playerGridItem_playerToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerGridItem_inactiveModalPaneFade<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsOptionsScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsOptionsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inner_permissions_options_panel">;
    static permissionsOptionsPanel_innerPermissionsOptionsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "permissions_options_stack_panel">;
    static permissionsOptionsPanel_innerPermissionsOptionsPanel_permissionsOptionsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsOptionsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "permissions_padding_0" | "world_template_option_lock_panel" | "permissions_padding_1" | "permission_level_dropdown" | "permissions_padding_2" | "permissions_options_grid" | "permissions_padding_3" | "permissions_kick_button_panel" | "permissions_padding_4" | "permissions_ban_button_panel" | "permissions_padding_5">;
    static permissionsOptionsStackPanel_permissionsPadding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsOptionsStackPanel_worldTemplateOptionLockPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_info_label">;
    static permissionsOptionsStackPanel_worldTemplateOptionLockPanel_optionInfoLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsOptionsStackPanel_permissionsPadding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsOptionsStackPanel_permissionLevelDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsOptionsStackPanel_permissionsPadding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsOptionsStackPanel_permissionsOptionsGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsOptionsStackPanel_permissionsPadding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsOptionsStackPanel_permissionsKickButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsOptionsStackPanel_permissionsPadding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsOptionsStackPanel_permissionsBanButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsOptionsStackPanel_permissionsPadding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsOptionsGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsOptionsGridItem<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "option_label_panel" | "option_state_label_panel" | "option_toggle">;
    static permissionsOptionsGridItem_optionLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_label">;
    static permissionsOptionsGridItem_optionLabelPanel_optionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsOptionsGridItem_optionStateLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_state_label">;
    static permissionsOptionsGridItem_optionStateLabelPanel_optionStateLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsOptionsGridItem_optionToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsKickButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "kick_button">;
    static permissionsKickButtonPanel_kickButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsBanButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "ban_button">;
    static permissionsBanButtonPanel_banButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static ipLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionStateLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static topBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannerBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerLocalIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerGamerPic<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "player_panel_black_border">;
    static playerGamerPic_playerPanelBlackBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static backButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static backButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label_panel" | "chevron_panel" | "back_button_padding">;
    static backButtonContent_chevronPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left_chevron">;
    static backButtonContent_chevronPanel_leftChevron<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static backButtonContent_backButtonPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backButtonContent_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static backButtonContent_labelPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "icon_panel" | "player_pic_panel" | "player_button_padding_1" | "gamertag_panel" | "player_button_padding_2">;
    static playerButtonContent_playerPicPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerButtonContent_playerButtonPadding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerButtonContent_gamertagPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamertag_label">;
    static playerButtonContent_gamertagPanel_gamertagLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerButtonContent_iconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dropdown_icon_image">;
    static playerButtonContent_iconPanel_dropdownIconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerButtonContent_playerButtonPadding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerPicPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "player_gamer_pic" | "player_local_icon">;
    static playerPicPanel_playerGamerPic<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerPicPanel_playerLocalIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionLevelDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioTitleAndIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "radio_icon" | "radio_title">;
    static radioTitleAndIcon_radioIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioTitleAndIcon_radioTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioContentWithTitleBar<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "bottom_padding" | "title_and_icon" | "helper_text">;
    static radioContentWithTitleBar_titleAndIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioContentWithTitleBar_helperText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioContentWithTitleBar_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioVisualsWithTitle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "radio_content">;
    static radioVisualsWithTitle_radioContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioVisualsWithTitleHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "radio_content">;
    static radioVisualsWithTitleHover_radioContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsVisitorVisualsWithTitleNormal<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsVisitorVisualsWithTitleHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsMemberVisualsWithTitleNormal<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsMemberVisualsWithTitleHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsOpVisualsWithTitleNormal<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsOpVisualsWithTitleHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsVisitorRadioVisualsNormal<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsVisitorRadioVisualsHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsMemberRadioVisualsNormal<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsMemberRadioVisualsHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsOpRadioVisualsNormal<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsOpRadioVisualsHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsCustomRadioVisualsNormal<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsCustomRadioVisualsHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionLevelRadio<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "radio_with_label_core">;
    static permissionLevelRadio_radioWithLabelCore<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionLevelDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionLevelDropdownStateContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "icon_panel" | "label_panel" | "arrow_panel" | "dropdown_label_padding">;
    static permissionLevelDropdownStateContent_iconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dropdown_icon_image">;
    static permissionLevelDropdownStateContent_iconPanel_dropdownIconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionLevelDropdownStateContent_dropdownLabelPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionLevelDropdownStateContent_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static permissionLevelDropdownStateContent_labelPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionLevelDropdownStateContent_arrowPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "arrow_image">;
    static permissionLevelDropdownStateContent_arrowPanel_arrowImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class PersonaCastCharacterScreen extends Class {
    static castModalBottomBar<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "0">;
    static castModalBottomBar_0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static castCommonDialogBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "top_bar" | "cast_modal_bottom_bar" | "popup_inner_contents">;
    static castCommonDialogBackground_topBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static castCommonDialogBackground_popupInnerContents<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static castCommonDialogBackground_castModalBottomBar<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static castModalPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "cast_preview_modal_content">;
    static castModalPanel_castPreviewModalContent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_castCharacterSelect<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "background" | "popup_background">;
    static popupDialog_castCharacterSelect_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_castCharacterSelect_popupBackground<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonDcastPopupFramework<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonCastModalTopBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_panel" | "close_button_holder">;
    static commonCastModalTopBar_titlePanel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonCastModalTopBar_closeButtonHolder<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static castCharacterSelectMain<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "modal_inner_background" | "main_content_horizontal_stack">;
    static castCharacterSelectMain_modalInnerBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static castCharacterSelectMain_mainContentHorizontalStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "cast_grid" | "vertical_centerer">;
    static castCharacterSelectMain_mainContentHorizontalStack_castGrid<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static castCharacterSelectMain_mainContentHorizontalStack_verticalCenterer<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "bottom_padding" | "skin_viewer_panel" | "top_fill" | "bottom_fill">;
    static castCharacterSelectMain_mainContentHorizontalStack_verticalCenterer_topFill<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static castCharacterSelectMain_mainContentHorizontalStack_verticalCenterer_skinViewerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static castCharacterSelectMain_mainContentHorizontalStack_verticalCenterer_bottomFill<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static castCharacterSelectMain_mainContentHorizontalStack_verticalCenterer_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static castScrollViewPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static castGridWithButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "cast_grid" | "top_spacing" | "bottom_spacing">;
    static castGridWithButtons_topSpacing<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static castGridWithButtons_castGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static castGridWithButtons_bottomSpacing<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static castGridPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cast_grid">;
    static castGridPanel_castGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static castSingleCharacterButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cast_character_button">;
    static castSingleCharacterButtonPanel_castCharacterButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "selected" | "pressed" | "background_image" | "hover" | "button_outline">;
    static castSingleCharacterButtonPanel_castCharacterButton_backgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static castSingleCharacterButtonPanel_castCharacterButton_selected<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static castSingleCharacterButtonPanel_castCharacterButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static castSingleCharacterButtonPanel_castCharacterButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static castSingleCharacterButtonPanel_castCharacterButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static castSingleCharacterButtonPanel_castCharacterButton_buttonOutline<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "cast_character_content">;
    static castSingleCharacterButtonPanel_castCharacterButton_buttonOutline_castCharacterContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static castCharacterButtonContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cast_single_character_content_visible_panel">;
    static castCharacterButtonContentPanel_castSingleCharacterContentVisiblePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cast_single_character_button_content">;
    static castCharacterButtonContentPanel_castSingleCharacterContentVisiblePanel_castSingleCharacterButtonContent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inUseGridItem<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static personaCastPaperDollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "preset_input_panel">;
    static personaCastPaperDollPanel_presetInputPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static characterLoadingAnim<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static characterLoadingAnimPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "character_loading_anim">;
    static characterLoadingAnimPanel_characterLoadingAnim<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinViewerPanelSkinModel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "skin_model">;
    static skinViewerPanelSkinModel_skinModel<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static castCharacterScreenRightSideModel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "skin_model_panel" | "skin_model_loading_anim" | "skin_model_label">;
    static castCharacterScreenRightSideModel_skinModelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static castCharacterScreenRightSideModel_skinModelLoadingAnim<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static castCharacterScreenRightSideModel_skinModelLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonBackgroundBlocker<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "modal_background_button">;
    static commonBackgroundBlocker_modalBackgroundButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonPreviewPageFramework<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "background" | "cast_preview_modal">;
    static commonPreviewPageFramework_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonPreviewPageFramework_castPreviewModal<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static castPreviewPageOne<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static castPreviewPageTwo<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static castPreviewPageOneInnerSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "modal_inner_background" | "cast_content">;
    static castPreviewPageOneInnerSection_modalInnerBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static castPreviewPageOneInnerSection_castContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "cast_image_cycler" | "cast_vertical_panel">;
    static castPreviewPageOneInnerSection_castContent_castImageCycler<T extends Types = Types.ImageCycler>(properties?: PropertiesType[T]): Modify<T, string>;
    static castPreviewPageOneInnerSection_castContent_castVerticalPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "buffer_panel" | "controls_label_panel" | "controls_shoulder_button_display_panel">;
    static castPreviewPageOneInnerSection_castContent_castVerticalPanel_controlsLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text_cycler">;
    static castPreviewPageOneInnerSection_castContent_castVerticalPanel_controlsLabelPanel_textCycler<T extends Types = Types.LabelCycler>(properties?: PropertiesType[T]): Modify<T, string>;
    static castPreviewPageOneInnerSection_castContent_castVerticalPanel_bufferPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static castPreviewPageOneInnerSection_castContent_castVerticalPanel_controlsShoulderButtonDisplayPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chevronImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "chevron_image">;
    static chevronImagePanel_chevronImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static chevronButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static shiftPagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "centering_panel">;
    static shiftPagePanel_centeringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "0">;
    static shiftPagePanel_centeringPanel_0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static shiftPageLeftPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static shiftPageRightPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontal8pxPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontal20pxPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ftueSubpageIndicatorPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "controls_shoulder_button_display">;
    static ftueSubpageIndicatorPanel_controlsShoulderButtonDisplay<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_padding" | "right_padding" | "left_shoulder_button_panel" | "left_shoulder_button_padding" | "page_indicator_grid" | "right_shoulder_button_padding" | "right_shoulder_button_panel">;
    static ftueSubpageIndicatorPanel_controlsShoulderButtonDisplay_leftPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ftueSubpageIndicatorPanel_controlsShoulderButtonDisplay_leftShoulderButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ftueSubpageIndicatorPanel_controlsShoulderButtonDisplay_leftShoulderButtonPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ftueSubpageIndicatorPanel_controlsShoulderButtonDisplay_pageIndicatorGrid<T extends Types = Types.GridPageIndicator>(properties?: PropertiesType[T]): Modify<T, string>;
    static ftueSubpageIndicatorPanel_controlsShoulderButtonDisplay_rightShoulderButtonPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ftueSubpageIndicatorPanel_controlsShoulderButtonDisplay_rightShoulderButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ftueSubpageIndicatorPanel_controlsShoulderButtonDisplay_rightPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static individaulCastPageIndicator<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "panel_when_current_page" | "panel_when_not_current_page">;
    static individaulCastPageIndicator_panelWhenCurrentPage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "panel_with_padding">;
    static individaulCastPageIndicator_panelWhenCurrentPage_panelWithPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cast_dot">;
    static individaulCastPageIndicator_panelWhenCurrentPage_panelWithPadding_castDot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static individaulCastPageIndicator_panelWhenNotCurrentPage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "panel_with_padding">;
    static individaulCastPageIndicator_panelWhenNotCurrentPage_panelWithPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cast_dot">;
    static individaulCastPageIndicator_panelWhenNotCurrentPage_panelWithPadding_castDot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "how_to_image" | "how_to_label_section">;
    static howToSection_howToImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToSection_howToLabelSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "how_to_label">;
    static howToSection_howToLabelSection_howToLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static castPreviewPageTwoInnerSection<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "how_to_section_stack">;
    static castPreviewPageTwoInnerSection_howToSectionStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider_panel" | "how_to_section_left" | "how_to_section_right">;
    static castPreviewPageTwoInnerSection_howToSectionStack_howToSectionLeft<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static castPreviewPageTwoInnerSection_howToSectionStack_dividerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "divider">;
    static castPreviewPageTwoInnerSection_howToSectionStack_dividerPanel_divider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static castPreviewPageTwoInnerSection_howToSectionStack_howToSectionRight<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class PersonaCommon extends Class {
    static iconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mashupWorld<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mashupHangar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mashupPaintbrush<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoBulbIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static greenCheckmarkIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static personaScreenBackgroundContent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadingIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static focusBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static equippedBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressLoading<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "progress_loading">;
    static progressLoading_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleRarityPositionableTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static genericTitlePanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "title_label">;
    static genericTitlePanel_titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static rarityBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemRarityColorBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pieceItemDisplay<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item_renderer" | "loading_progress_spinner">;
    static pieceItemDisplay_itemRenderer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "item_image" | "rarity_bar_panel" | "extra_control">;
    static pieceItemDisplay_itemRenderer_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pieceItemDisplay_itemRenderer_itemImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pieceItemDisplay_itemRenderer_rarityBarPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pieceItemDisplay_itemRenderer_extraControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "control_instance">;
    static pieceItemDisplay_itemRenderer_extraControl_controlInstance<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pieceItemDisplay_loadingProgressSpinner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static wheelState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "empty" | "emote_preview">;
    static emoteImage_empty<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteImage_emotePreview<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "valid" | "valid_no_image">;
    static emoteImage_emotePreview_valid<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteImage_emotePreview_validNoImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "valid_text">;
    static emoteImage_emotePreview_validNoImage_validText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardHotkeyHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "keyboard_1" | "keyboard_2" | "keyboard_3" | "keyboard_4">;
    static keyboardHotkeyHelpers_keyboard1<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardHotkeyHelpers_keyboard2<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardHotkeyHelpers_keyboard3<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardHotkeyHelpers_keyboard4<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHotkeyHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "quick_select_gamepad_helpers" | "analog_select_gamepad_helper_panel">;
    static gamepadHotkeyHelpers_quickSelectGamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_y" | "gamepad_b" | "gamepad_a" | "gamepad_x">;
    static gamepadHotkeyHelpers_quickSelectGamepadHelpers_gamepadY<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHotkeyHelpers_quickSelectGamepadHelpers_gamepadB<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHotkeyHelpers_quickSelectGamepadHelpers_gamepadA<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHotkeyHelpers_quickSelectGamepadHelpers_gamepadX<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHotkeyHelpers_analogSelectGamepadHelperPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "analog_select_gamepad_helper">;
    static gamepadHotkeyHelpers_analogSelectGamepadHelperPanel_analogSelectGamepadHelper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteWheelSlotContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$emote_slot_name" | "image_0" | "touch_label_0">;
    static emoteWheelSlotContent_$emoteSlotName<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteWheelSlotContent_image0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteWheelSlotContent_touchLabel0<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectionWheel<T extends Types = Types.SelectionWheel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteSelectionWheel<T extends Types = Types.SelectionWheel>(properties?: PropertiesType[T]): Modify<T, "default_state" | "emote_slot_0_content" | "emote_slot_1_content" | "emote_slot_2_content" | "emote_slot_3_content">;
    static emoteSelectionWheel_defaultState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteSelectionWheel_emoteSlot0Content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteSelectionWheel_emoteSlot1Content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteSelectionWheel_emoteSlot2Content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteSelectionWheel_emoteSlot3Content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteWheelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "emote_name" | "emote_wheel_content_panel">;
    static emoteWheelPanel_emoteName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteWheelPanel_emoteWheelContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helpers" | "keyboard_helpers" | "emote_wheel">;
    static emoteWheelPanel_emoteWheelContentPanel_gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteWheelPanel_emoteWheelContentPanel_keyboardHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteWheelPanel_emoteWheelContentPanel_emoteWheel<T extends Types = Types.SelectionWheel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class PersonaPopups extends Class {
    static noContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static createPersonaChoiceCheckedImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static createPersonaChoiceUncheckedImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalWindowInputBlocker<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalPopupBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTextField<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupContent<T extends Types = Types.ScrollView>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupOkButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "content" | "title_label" | "close_button" | "ok_button">;
    static popupFrame_titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupFrame_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupFrame_content<T extends Types = Types.ScrollView>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupFrame_okButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupInfoPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "frame">;
    static popupInfoPanel_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupInfoPanel_frame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonDialog<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "background" | "panel">;
    static commonDialog_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonDialog_panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "title_panel" | "background_image" | "popup_content">;
    static popupDialogBg_backgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogBg_titlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title">;
    static popupDialogBg_titlePanel_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogBg_popupContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconTitleBar<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "icon" | "text_title_panel">;
    static iconTitleBar_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconTitleBar_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconTitleBar_textTitlePanel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupCommon<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "background">;
    static popupCommon_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "text_stack_panel">;
    static popupCommon_background_textStackPanel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_differenceInformation<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static differencesLeftDetails<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static differencesLeftSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "details" | "padding_1" | "title_bar">;
    static differencesLeftSection_titleBar<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static differencesLeftSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static differencesLeftSection_details<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static differencesDetailImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static differencesTitleCardDisplay<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left" | "right" | "padding_1">;
    static differencesTitleCardDisplay_left<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static differencesTitleCardDisplay_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static differencesTitleCardDisplay_right<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static differencesPersonaDetailSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static differencesClassicSkinDetailSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static differentInfoPanelContents<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider" | "character_display" | "item_1_padding" | "item_2_padding" | "classic_skin_display">;
    static differentInfoPanelContents_characterDisplay<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static differentInfoPanelContents_item1Padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static differentInfoPanelContents_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static differentInfoPanelContents_item2Padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static differentInfoPanelContents_classicSkinDisplay<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_previewDifferenceInformation<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_deletePersona<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_bg">;
    static popupDialog_deletePersona_popupDialogBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogDeletePersonaContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "message" | "buttons" | "image">;
    static popupDialogDeletePersonaContent_image<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogDeletePersonaContent_message<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogDeletePersonaContent_buttons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static alexWarning<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static deletePopupDialogMessage<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static deletePersonaButtonStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "left_button" | "right_button">;
    static deletePersonaButtonStack_leftButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static deletePersonaButtonStack_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static deletePersonaButtonStack_rightButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static deletePersonaLeftButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static deletePersonaRightButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_createPersona<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createPersonaDisplay<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "vertical_padding_2px" | "stack_content">;
    static createPersonaDisplay_verticalPadding2px<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createPersonaDisplay_stackContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createPersonaChoiceStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "background1" | "background2">;
    static createPersonaChoiceStack_background1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createPersonaChoiceStack_background2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createPersonaChoiceCharacter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "create_persona_choice_character">;
    static createPersonaChoiceCharacter_createPersonaChoiceCharacter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectDefaultCharacterButtonVerticalPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "select_default_character_button_panel">;
    static selectDefaultCharacterButtonVerticalPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectDefaultCharacterButtonVerticalPanel_selectDefaultCharacterButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "select_default_character_button">;
    static selectDefaultCharacterButtonVerticalPanel_selectDefaultCharacterButtonPanel_selectDefaultCharacterButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectDefaultCharacterButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static createPersonaChoiceClassicSkin<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createPersonaChoiceButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "choice_toggle">;
    static createPersonaChoiceButton_choiceToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createPersonaChoiceBackground<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "choice_title_bar" | "choice_details_body" | "choice_bottom_content">;
    static createPersonaChoiceBackground_choiceTitleBar<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createPersonaChoiceBackground_choiceDetailsBody<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createPersonaChoiceBackground_choiceBottomContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createPersonaChoiceTitleBar<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "checkbox" | "spacing" | "icon_title">;
    static createPersonaChoiceTitleBar_checkbox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createPersonaChoiceTitleBar_spacing<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createPersonaChoiceTitleBar_iconTitle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createPersonaChoiceCheckPositioning<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toggle_image">;
    static createPersonaChoiceCheckPositioning_toggleImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createPersonaChoiceIconTitle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createPersonaChoiceDetailPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "choice_details_body" | "spacing">;
    static createPersonaChoiceDetailPanel_spacing<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createPersonaChoiceDetailPanel_choiceDetailsBody<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static createPersonaChoiceDetail<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_invalidCustomSkin<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_bg">;
    static popupDialog_invalidCustomSkin_popupDialogBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogInvalidCustomSkinContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_message" | "popup_dialog_middle_button">;
    static popupDialogInvalidCustomSkinContent_popupDialogMessage<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogInvalidCustomSkinContent_popupDialogMiddleButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_upsellWithoutStore<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_chooseSkinType<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_bg">;
    static popupDialog_chooseSkinType_popupDialogBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogChooseSkinTypeContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left" | "right" | "popup_dialog_message">;
    static popupDialogChooseSkinTypeContent_popupDialogMessage<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogChooseSkinTypeContent_left<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogChooseSkinTypeContent_right<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogChooseSkinTypePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "choose_skin_type_button">;
    static popupDialogChooseSkinTypePanel_chooseSkinTypeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogSkinModel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "paper_doll">;
    static popupDialogSkinModel_paperDoll<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_customSkinInfo<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "background_image" | "popup_dialog_bg">;
    static popupDialog_customSkinInfo_backgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_customSkinInfo_popupDialogBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static customSkinInfoPanelText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static customSkinInfoPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "message" | "button_group">;
    static customSkinInfoPanel_message<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static customSkinInfoPanel_buttonGroup<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static customSkinInfoButtonCollection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "close" | "settings" | "vertical_4_padding">;
    static customSkinInfoButtonCollection_settings<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static customSkinInfoButtonCollection_vertical4Padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static customSkinInfoButtonCollection_close<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogCloseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static usageLimitedSettingsProfileButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static customSkinPopupDialogBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "background_image" | "popup_content" | "vertical_align_title">;
    static customSkinPopupDialogBg_backgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static customSkinPopupDialogBg_verticalAlignTitle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title">;
    static customSkinPopupDialogBg_verticalAlignTitle_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static customSkinPopupDialogBg_popupContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_emoteEquipSlotEditor<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "background_image" | "popup_emote_wheel_dialog">;
    static popupDialog_emoteEquipSlotEditor_backgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_emoteEquipSlotEditor_popupEmoteWheelDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupEmoteWheelDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "popup_background">;
    static popupEmoteWheelDialog_popupBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteEquipSlotContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "close" | "emote_wheel_content_panel">;
    static emoteEquipSlotContent_close<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteEquipSlotContent_emoteWheelContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cancel" | "emote_wheel_prompt_content">;
    static emoteEquipSlotContent_emoteWheelContentPanel_cancel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteEquipSlotContent_emoteWheelContentPanel_emoteWheelPromptContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeEmotePopupController<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "close_ui">;
    static closeEmotePopupController_closeUi<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emoteWheelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_realmsPlusExtraInfo<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "background_image" | "dialog_bg">;
    static popupDialog_realmsPlusExtraInfo_backgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_realmsPlusExtraInfo_dialogBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusExtraInfoPopupDialogBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "title" | "background_image" | "popup_content">;
    static realmsPlusExtraInfoPopupDialogBg_backgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusExtraInfoPopupDialogBg_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusExtraInfoPopupDialogBg_popupContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsExtraInfoPanelText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsExtraInfoPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_group" | "realms_extra">;
    static realmsExtraInfoPanel_realmsExtra<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsExtraInfoPanel_buttonGroup<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsExtraInfoButtonCollection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "close">;
    static realmsExtraInfoButtonCollection_close<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsExtraInfoContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "the_spread">;
    static realmsExtraInfoContent_theSpread<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pack_image" | "horizontal_6_padding" | "the_info_stack">;
    static realmsExtraInfoContent_theSpread_packImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsExtraInfoContent_theSpread_horizontal6Padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsExtraInfoContent_theSpread_theInfoStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "skins_and_world" | "textures_and_usage">;
    static realmsExtraInfoContent_theSpread_theInfoStack_skinsAndWorld<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsExtraInfoContent_theSpread_theInfoStack_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsExtraInfoContent_theSpread_theInfoStack_texturesAndUsage<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packInformationTexturesAndUsageTooltip<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "mid_padding" | "textures" | "appearance_status">;
    static packInformationTexturesAndUsageTooltip_textures<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packInformationTexturesAndUsageTooltip_midPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packInformationTexturesAndUsageTooltip_appearanceStatus<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static roamableStatusNotificationPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "appearance_status_notification" | "roamable_status">;
    static roamableStatusNotificationPanel_appearanceStatusNotification<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static roamableStatusNotificationPanel_roamableStatus<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static appearanceStatusImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "usage_limited" | "usage_not_limited">;
    static appearanceStatusImagePanel_usageLimited<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static appearanceStatusImagePanel_usageNotLimited<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static packInformationSkinsAndWorld<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "skins" | "mid_padding" | "worlds">;
    static packInformationSkinsAndWorld_skins<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packInformationSkinsAndWorld_midPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packInformationSkinsAndWorld_worlds<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinInfoLabelAndImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content_stack">;
    static skinInfoLabelAndImage_contentStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinInfoImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image">;
    static skinInfoImagePanel_image<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinInfoLabelPanelLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinInfoLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static skinInfoLabelPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinInfoContentStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "image_panel" | "label_panel" | "horizontal_2_padding">;
    static skinInfoContentStack_imagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinInfoContentStack_horizontal2Padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinInfoContentStack_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsExtraInfoPackInfo<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupToast<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Play extends Class {
    static labelBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkLabelBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldScreenshotBase<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static collectionWorldScreenshot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "screenshot_picture">;
    static collectionWorldScreenshot_screenshotPicture<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "gradient_container_stacked_panel">;
    static collectionWorldScreenshot_screenshotPicture_gradientContainerStackedPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "gradient_image_realmsplus_expired" | "solid_image_realmsplus_expired">;
    static collectionWorldScreenshot_screenshotPicture_gradientContainerStackedPanel_gradientImageRealmsplusExpired<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static collectionWorldScreenshot_screenshotPicture_gradientContainerStackedPanel_solidImageRealmsplusExpired<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "exclamationmark">;
    static collectionWorldScreenshot_screenshotPicture_gradientContainerStackedPanel_solidImageRealmsplusExpired_exclamationmark<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldItemGridBase<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static editIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesIconAnimated<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSlotsEditIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsChevron<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsIcon1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsIcon2<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bellIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static deleteIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldDownloadIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyServersIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static lanIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsServerIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static crossPlatformFriendsServerIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsRemoveIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameOnlineIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameOfflineIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameUnavailableIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static importIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static uploadIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static addServerIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverTabIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsArtIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsTextBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static connectedStorage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static feedbackIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static localOnlyStorage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static localAndCloudStorage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudOnlyStorage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftArrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightArrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smallProgressPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static signInRealmsImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "chevron" | "portal">;
    static signInRealmsImage_chevron<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static signInRealmsImage_portal<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSignInPromptLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSignInPrompt<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_sign_in_prompt_label">;
    static realmsSignInPrompt_realmsSignInPromptLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSignInPromptFriends<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_sign_in_prompt_label_friends">;
    static realmsSignInPromptFriends_realmsSignInPromptLabelFriends<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static signInToViewRealmsContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "realms_sign_in_prompt" | "sign_in_realms_image">;
    static signInToViewRealmsContentPanel_signInRealmsImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static signInToViewRealmsContentPanel_realmsSignInPrompt<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static signInToViewRealmsContentPanelFriends<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static signInToViewRealmsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static signInToViewRealmsButtonFriends<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsListText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldHeader<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldDetails<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldType<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldPlayerCount<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldGameStatusIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "game_online_icon" | "game_unavailable_icon" | "game_offline_icon">;
    static realmsWorldGameStatusIcon_gameOnlineIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldGameStatusIcon_gameUnavailableIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldGameStatusIcon_gameOfflineIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_world_details" | "realms_world_header">;
    static realmsWorldTextPanel_realmsWorldHeader<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldTextPanel_realmsWorldDetails<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldTrialTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_world_details" | "realms_world_header_text">;
    static realmsWorldTrialTextPanel_realmsWorldHeaderText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldTrialTextPanel_realmsWorldDetails<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldContentTextAreaPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_world_text_panel">;
    static realmsWorldContentTextAreaPanel_realmsWorldTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsTrialContentTextAreaPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_world_trial_text_panel">;
    static realmsTrialContentTextAreaPanel_realmsWorldTrialTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldContentStatusAreaPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "world_player_count_text_panel" | "realms_world_game_status_icon">;
    static realmsWorldContentStatusAreaPanel_worldPlayerCountTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_world_player_count">;
    static realmsWorldContentStatusAreaPanel_worldPlayerCountTextPanel_realmsWorldPlayerCount<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldContentStatusAreaPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldContentStatusAreaPanel_realmsWorldGameStatusIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldContentStatusAreaPanelContainer<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "realms_world_type" | "realms_world_status_panel">;
    static realmsWorldContentStatusAreaPanelContainer_realmsWorldStatusPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_world_content_status_area_panel">;
    static realmsWorldContentStatusAreaPanelContainer_realmsWorldStatusPanel_realmsWorldContentStatusAreaPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldContentStatusAreaPanelContainer_realmsWorldType<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "realm_screenshot" | "realms_world_content_text_area_panel" | "realms_world_content_status_area_panel">;
    static realmsWorldContentPanel_realmScreenshot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldContentPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldContentPanel_realmsWorldContentTextAreaPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldContentPanel_realmsWorldContentStatusAreaPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_world_content_status_area_panel_container">;
    static realmsWorldContentPanel_realmsWorldContentStatusAreaPanel_realmsWorldContentStatusAreaPanelContainer<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsTrialContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "realm_screenshot" | "realms_trial_content_text_area_panel">;
    static realmsTrialContentPanel_realmScreenshot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsTrialContentPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsTrialContentPanel_realmsTrialContentTextAreaPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldEditButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsFeedButtonContent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "default_icon" | "unread_icon_active">;
    static realmsFeedButtonContent_defaultIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsFeedButtonContent_unreadIconActive<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static persistentRealmsFeedButtonControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsFeedButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static leaveFriendsRealmButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static unreadStoryCountText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static unreadStoryCountTextBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static unreadStoryCountPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static unreadStoryCountPanel_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, "background">;
    static unreadStoryCountPanel_text_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldItem<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "realms_button_panel" | "edit_panel" | "feed_panel_with_unread_count" | "leave_realm_panel">;
    static realmsWorldItem_realmsButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_world_item_button" | "tts_border">;
    static realmsWorldItem_realmsButtonPanel_realmsWorldItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldItem_realmsButtonPanel_ttsBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldItem_editPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_world_edit_button" | "realms_world_expiry_notification_image">;
    static realmsWorldItem_editPanel_realmsWorldEditButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldItem_editPanel_realmsWorldExpiryNotificationImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldItem_feedPanelWithUnreadCount<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "feed_panel" | "unread_story_count">;
    static realmsWorldItem_feedPanelWithUnreadCount_feedPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_feed_button">;
    static realmsWorldItem_feedPanelWithUnreadCount_feedPanel_realmsFeedButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldItem_feedPanelWithUnreadCount_unreadStoryCount<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldItem_leaveRealmPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "leave_friends_realm_button">;
    static realmsWorldItem_leaveRealmPanel_leaveFriendsRealmButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldItemGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldHeader<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer" | "header_panel" | "network_world_header_icon">;
    static networkWorldHeader_networkWorldHeaderIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldHeader_spacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldHeader_headerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "network_world_header_text">;
    static networkWorldHeader_headerPanel_networkWorldHeaderText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldDetails<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldPlayerCount<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "count">;
    static networkWorldPlayerCount_count<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldGameStatusIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "game_online_icon" | "game_unavailable_icon" | "game_offline_icon">;
    static networkWorldGameStatusIcon_gameOnlineIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldGameStatusIcon_gameUnavailableIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldGameStatusIcon_gameOfflineIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "network_world_details" | "network_world_header">;
    static networkWorldTextPanel_networkWorldHeader<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldTextPanel_networkWorldDetails<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldContentTextAreaPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "network_world_text_panel">;
    static networkWorldContentTextAreaPanel_networkWorldTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldContentStatusAreaPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "network_world_game_status_icon" | "network_player_count_text_panel">;
    static networkWorldContentStatusAreaPanel_networkPlayerCountTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "network_world_player_count">;
    static networkWorldContentStatusAreaPanel_networkPlayerCountTextPanel_networkWorldPlayerCount<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldContentStatusAreaPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldContentStatusAreaPanel_networkWorldGameStatusIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldContentStatusAreaPanelContainer<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "network_world_status_panel" | "network_world_type">;
    static networkWorldContentStatusAreaPanelContainer_networkWorldStatusPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "network_world_content_status_area_panel">;
    static networkWorldContentStatusAreaPanelContainer_networkWorldStatusPanel_networkWorldContentStatusAreaPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldContentStatusAreaPanelContainer_networkWorldType<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldType<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "type">;
    static networkWorldType_type<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldItemButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "network_world_content_text_area_panel" | "network_status_area_panel" | "network_world_type_icon">;
    static networkWorldItemButtonContent_networkWorldContentTextAreaPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldItemButtonContent_networkStatusAreaPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "network_world_content_status_area_panel_container">;
    static networkWorldItemButtonContent_networkStatusAreaPanel_networkWorldContentStatusAreaPanelContainer<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldItemButtonContent_networkWorldTypeIcon<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, "padding" | "$network_world_icon">;
    static networkWorldItemButtonContent_networkWorldTypeIcon_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldItemButtonContent_networkWorldTypeIcon_$networkWorldIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkServerWorldEditButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tts_border" | "network_world_item_button">;
    static networkWorldItem_networkWorldItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldItem_ttsBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldItemGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static networkWorldItemIgnoreCrossplay<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "network_world_item_button">;
    static networkWorldItemIgnoreCrossplay_networkWorldItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static labelContentTemplate<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content" | "label_panel">;
    static labelContentTemplate_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label_panel_layout">;
    static labelContentTemplate_labelPanel_labelPanelLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static labelContentTemplate_labelPanel_labelPanelLayout_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static labelContentTemplate_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static informationPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "focus_button">;
    static informationPanel_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "label_panel_layout">;
    static informationPanel_background_labelPanelLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static informationPanel_background_labelPanelLayout_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static informationPanel_focusButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static blockedMultiplayerPrivilegesPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background">;
    static blockedMultiplayerPrivilegesPanel_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "label_panel_layout">;
    static blockedMultiplayerPrivilegesPanel_background_labelPanelLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static blockedMultiplayerPrivilegesPanel_background_labelPanelLayout_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static moreServersGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static additionalServerToggleContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "network_world_content_text_area_panel">;
    static additionalServerToggleContent_networkWorldContentTextAreaPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static moreServersLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "list_label">;
    static moreServersLabelPanel_listLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static moreServersWorldItem<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "network_server_world_edit_button" | "additional_server_toggle_base">;
    static moreServersWorldItem_additionalServerToggleBase<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static moreServersWorldItem_networkServerWorldEditButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static additionalServerInfoPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "server_info_stack_panel">;
    static additionalServerInfoPanel_serverInfoStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "ping" | "padding_1" | "padding_2" | "padding_3" | "padding_4" | "server_name" | "player_count" | "join_server_button">;
    static additionalServerInfoPanel_serverInfoStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static additionalServerInfoPanel_serverInfoStackPanel_serverName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static additionalServerInfoPanel_serverInfoStackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static additionalServerInfoPanel_serverInfoStackPanel_playerCount<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static additionalServerInfoPanel_serverInfoStackPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static additionalServerInfoPanel_serverInfoStackPanel_ping<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static additionalServerInfoPanel_serverInfoStackPanel_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static additionalServerInfoPanel_serverInfoStackPanel_joinServerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static pingRateIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pingRatePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "concurrency_stack">;
    static pingRatePanel_concurrencyStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_0" | "player_count" | "ping_rate_icon">;
    static pingRatePanel_concurrencyStack_playerCount<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static pingRatePanel_concurrencyStack_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pingRatePanel_concurrencyStack_pingRateIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static addServerInfoPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "server_info_stack_panel">;
    static addServerInfoPanel_serverInfoStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "add_server_title" | "add_server_description">;
    static addServerInfoPanel_serverInfoStackPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addServerInfoPanel_serverInfoStackPanel_addServerTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static addServerInfoPanel_serverInfoStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addServerInfoPanel_serverInfoStackPanel_addServerDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyFeaturedServerGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static featuredServerWorldItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "server_button">;
    static featuredServerWorldItem_serverButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverButtonContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "top_panel" | "bottom_panel">;
    static serverButtonContentPanel_topPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title_panel" | "padding_0" | "third_party_server_screenshot">;
    static serverButtonContentPanel_topPanel_thirdPartyServerScreenshot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverButtonContentPanel_topPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverButtonContentPanel_topPanel_titlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress" | "third_party_server_name">;
    static serverButtonContentPanel_topPanel_titlePanel_thirdPartyServerName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverButtonContentPanel_topPanel_titlePanel_progress<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverButtonContentPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverButtonContentPanel_bottomPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "third_party_server_message">;
    static serverButtonContentPanel_bottomPanel_thirdPartyServerMessage<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyServerContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "ping_rate_panel">;
    static thirdPartyServerContentPanel_pingRatePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadingFeaturedServersPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "load_bars">;
    static loadingFeaturedServersPanel_loadBars<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_bars">;
    static loadingFeaturedServersPanel_loadBars_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyServerScreenshot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "picture">;
    static thirdPartyServerScreenshot_picture<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyServerInfoPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress" | "server_info_stack_panel">;
    static thirdPartyServerInfoPanel_serverInfoStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "ping" | "padding_1" | "padding_0" | "padding_2" | "padding_3" | "padding_4" | "padding_5" | "description_section" | "server_name" | "player_count" | "join_server_button" | "server_screenshot" | "view_offers_button" | "screenshots_section" | "games_section" | "news_section">;
    static thirdPartyServerInfoPanel_serverInfoStackPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyServerInfoPanel_serverInfoStackPanel_serverScreenshot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyServerInfoPanel_serverInfoStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyServerInfoPanel_serverInfoStackPanel_serverName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyServerInfoPanel_serverInfoStackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyServerInfoPanel_serverInfoStackPanel_playerCount<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyServerInfoPanel_serverInfoStackPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyServerInfoPanel_serverInfoStackPanel_ping<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyServerInfoPanel_serverInfoStackPanel_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyServerInfoPanel_serverInfoStackPanel_joinServerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyServerInfoPanel_serverInfoStackPanel_viewOffersButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyServerInfoPanel_serverInfoStackPanel_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyServerInfoPanel_serverInfoStackPanel_screenshotsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyServerInfoPanel_serverInfoStackPanel_descriptionSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyServerInfoPanel_serverInfoStackPanel_gamesSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyServerInfoPanel_serverInfoStackPanel_newsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyServerInfoPanel_progress<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static textIconNumberPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "text" | "stack_panel" | "padding_0" | "$progress_panel">;
    static textIconNumberPanel_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static textIconNumberPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textIconNumberPanel_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "number" | "padding_1" | "icon_panel">;
    static textIconNumberPanel_stackPanel_iconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static textIconNumberPanel_stackPanel_iconPanel_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static textIconNumberPanel_stackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textIconNumberPanel_stackPanel_number<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static textIconNumberPanel_$progressPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static greyBarPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "grey_bar" | "green_bar">;
    static greyBarPanel_greyBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static greyBarPanel_greenBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static greyBarPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsSectionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "padding_2" | "padding_3" | "divider_0" | "screenshots" | "screenshots_label" | "navigation_panel">;
    static screenshotsSectionPanel_divider0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsSectionPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsSectionPanel_screenshotsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsSectionPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsSectionPanel_screenshots<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsSectionPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsSectionPanel_navigationPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "left_arrow_button" | "navigation_bar" | "right_arrow_button">;
    static screenshotsSectionPanel_navigationPanel_leftArrowButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsSectionPanel_navigationPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsSectionPanel_navigationPanel_navigationBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "grey_bar">;
    static screenshotsSectionPanel_navigationPanel_navigationBar_greyBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "grey_bar_factory_panel">;
    static screenshotsSectionPanel_navigationPanel_navigationBar_greyBar_greyBarFactoryPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsSectionPanel_navigationPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsSectionPanel_navigationPanel_rightArrowButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsSectionPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "contents_description">;
    static descriptionTextPanel_contentsDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionSectionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "description_label" | "padding_1" | "padding_0" | "padding_3" | "divider_0" | "read_more_panel">;
    static descriptionSectionPanel_divider0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionSectionPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionSectionPanel_descriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionSectionPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionSectionPanel_readMorePanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "description_text_small" | "description_text_full" | "description_read_more_button_panel" | "description_read_less_button_panel">;
    static descriptionSectionPanel_readMorePanel_descriptionTextSmall<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionSectionPanel_readMorePanel_descriptionTextFull<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionSectionPanel_readMorePanel_descriptionReadMoreButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionSectionPanel_readMorePanel_descriptionReadLessButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionSectionPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamesFactoryObject<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "games_factory_panel">;
    static gamesFactoryObject_gamesFactoryPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "top_panel" | "bottom_panel">;
    static gamesFactoryObject_gamesFactoryPanel_topPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "game_image_panel" | "game_title_panel">;
    static gamesFactoryObject_gamesFactoryPanel_topPanel_gameImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "game_image">;
    static gamesFactoryObject_gamesFactoryPanel_topPanel_gameImagePanel_gameImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamesFactoryObject_gamesFactoryPanel_topPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamesFactoryObject_gamesFactoryPanel_topPanel_gameTitlePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "game_title" | "game_subtitle">;
    static gamesFactoryObject_gamesFactoryPanel_topPanel_gameTitlePanel_gameTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamesFactoryObject_gamesFactoryPanel_topPanel_gameTitlePanel_gameSubtitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamesFactoryObject_gamesFactoryPanel_bottomPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bottom_panel">;
    static gamesFactoryObject_gamesFactoryPanel_bottomPanel_bottomPanel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamesFactoryObject_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamesSectionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "description_label" | "padding_1" | "padding_0" | "padding_3" | "divider_0" | "games_factory_panel">;
    static gamesSectionPanel_divider0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamesSectionPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamesSectionPanel_descriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamesSectionPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamesSectionPanel_gamesFactoryPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamesSectionPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newsTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "contents_news">;
    static newsTextPanel_contentsNews<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static newsSectionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "news_label" | "padding_1" | "padding_0" | "padding_3" | "divider_0" | "read_more_panel">;
    static newsSectionPanel_divider0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newsSectionPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newsSectionPanel_newsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static newsSectionPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newsSectionPanel_readMorePanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "text_stack_panel" | "news_read_more_button_panel" | "news_read_less_button_panel">;
    static newsSectionPanel_readMorePanel_textStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider_panel" | "news_title_text" | "news_text_small" | "news_text_full">;
    static newsSectionPanel_readMorePanel_textStackPanel_newsTitleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static newsSectionPanel_readMorePanel_textStackPanel_dividerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "divider_0">;
    static newsSectionPanel_readMorePanel_textStackPanel_dividerPanel_divider0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newsSectionPanel_readMorePanel_textStackPanel_newsTextSmall<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newsSectionPanel_readMorePanel_textStackPanel_newsTextFull<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newsSectionPanel_readMorePanel_newsReadMoreButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newsSectionPanel_readMorePanel_newsReadLessButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newsSectionPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static divider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static blueDiskspaceBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static greenDiskspaceBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static emptyDiskspaceBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldContentStatusAreaPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "world_storage_content_panel">;
    static legacyWorldContentStatusAreaPanel_worldStorageContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "world_storage_separator" | "world_storage_information">;
    static legacyWorldContentStatusAreaPanel_worldStorageContentPanel_worldStorageSeparator<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldContentStatusAreaPanel_worldStorageContentPanel_worldStorageInformation<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "legacy_world_label" | "legacy_world_bar">;
    static legacyWorldContentStatusAreaPanel_worldStorageContentPanel_worldStorageInformation_legacyWorldLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldContentStatusAreaPanel_worldStorageContentPanel_worldStorageInformation_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldContentStatusAreaPanel_worldStorageContentPanel_worldStorageInformation_legacyWorldBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "empty_diskspace_bar" | "local_diskspace_bar" | "legacy_diskspace_bar">;
    static legacyWorldContentStatusAreaPanel_worldStorageContentPanel_worldStorageInformation_legacyWorldBar_localDiskspaceBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldContentStatusAreaPanel_worldStorageContentPanel_worldStorageInformation_legacyWorldBar_legacyDiskspaceBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldContentStatusAreaPanel_worldStorageContentPanel_worldStorageInformation_legacyWorldBar_emptyDiskspaceBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldListText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmScreenshot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "picture">;
    static realmScreenshot_picture<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldLock<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldGameMode<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldGameMode<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldDate<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldDate<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldFilesize<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldFilesize<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldConnectedStorage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "local_and_cloud" | "local_only" | "cloud_only">;
    static localWorldConnectedStorage_localAndCloud<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldConnectedStorage_localOnly<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldConnectedStorage_cloudOnly<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldLockPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "lock">;
    static localWorldLockPanel_lock<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusBanner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_banner">;
    static realmsPlusBanner_realmsBanner<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text_indent">;
    static localWorldTextPanel_textIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top_side" | "bottom_side">;
    static localWorldTextPanel_textIndent_topSide<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "local_world_date" | "local_world_name" | "lock_1">;
    static localWorldTextPanel_textIndent_topSide_localWorldName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldTextPanel_textIndent_topSide_lock1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldTextPanel_textIndent_topSide_localWorldDate<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldTextPanel_textIndent_bottomSide<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "local_world_game_mode" | "pad" | "local_world_filesize" | "local_world_connected_storage" | "realms_plus_icon">;
    static localWorldTextPanel_textIndent_bottomSide_realmsPlusIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldTextPanel_textIndent_bottomSide_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldTextPanel_textIndent_bottomSide_localWorldGameMode<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldTextPanel_textIndent_bottomSide_localWorldConnectedStorage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldTextPanel_textIndent_bottomSide_localWorldFilesize<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text_indent">;
    static legacyWorldTextPanel_textIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top_side" | "bottom_side">;
    static legacyWorldTextPanel_textIndent_topSide<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "legacy_world_date" | "legacy_world_name">;
    static legacyWorldTextPanel_textIndent_topSide_legacyWorldName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldTextPanel_textIndent_topSide_legacyWorldDate<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldTextPanel_textIndent_bottomSide<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "legacy_world_game_mode" | "legacy_world_filesize">;
    static legacyWorldTextPanel_textIndent_bottomSide_legacyWorldGameMode<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldTextPanel_textIndent_bottomSide_legacyWorldFilesize<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static betaRetailWorldTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text_indent">;
    static betaRetailWorldTextPanel_textIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top_side" | "bottom_side">;
    static betaRetailWorldTextPanel_textIndent_topSide<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "beta_retail_world_name" | "beta_retail_world_date">;
    static betaRetailWorldTextPanel_textIndent_topSide_betaRetailWorldName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static betaRetailWorldTextPanel_textIndent_topSide_betaRetailWorldDate<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static betaRetailWorldTextPanel_textIndent_bottomSide<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "beta_retail_world_game_mode" | "beta_retail_world_filesize">;
    static betaRetailWorldTextPanel_textIndent_bottomSide_betaRetailWorldGameMode<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static betaRetailWorldTextPanel_textIndent_bottomSide_betaRetailWorldFilesize<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "world_text_panel" | "world_screenshot">;
    static worldContentPanel_worldScreenshot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldContentPanel_worldTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ownershipVerificationInProgressContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_padding" | "loading_bar_panel" | "bottom_padding" | "loading_label" | "mid_padding">;
    static ownershipVerificationInProgressContent_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ownershipVerificationInProgressContent_loadingBarPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "loading_bar_animation">;
    static ownershipVerificationInProgressContent_loadingBarPanel_loadingBarAnimation<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static ownershipVerificationInProgressContent_midPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ownershipVerificationInProgressContent_loadingLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static ownershipVerificationInProgressContent_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ownershipVerificationInProgressPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "ownership_verification_in_progress_content">;
    static ownershipVerificationInProgressPanel_ownershipVerificationInProgressContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static betaRetailWorldItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldEditButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudUploadButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudUploadAndEditWorldStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "edit" | "cloud">;
    static cloudUploadAndEditWorldStackPanel_cloud<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudUploadAndEditWorldStackPanel_edit<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldDeleteButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldMigrateButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "header_button_panel" | "signin_in_progress_panel">;
    static localWorldItem_headerButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldItem_signinInProgressPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldItem<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "header_button_panel_with_delete" | "header_button_panel_with_migrate" | "header_button_panel_no_delete">;
    static legacyWorldItem_headerButtonPanelWithDelete<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldItem_headerButtonPanelWithMigrate<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldItem_headerButtonPanelNoDelete<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static betaRetailWorldItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldItemGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldItemGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static betaRetailLocalWorldItemGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static betaRetailLegacyWorldItemGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonButtonTemplate<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonButtonText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static addFriendAndInvitePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "add_friend_button" | "join_by_code_button" | "notification_button_panel">;
    static addFriendAndInvitePanel_addFriendButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static addFriendAndInvitePanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addFriendAndInvitePanel_joinByCodeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static addFriendAndInvitePanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addFriendAndInvitePanel_notificationButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "notification_button">;
    static addFriendAndInvitePanel_notificationButtonPanel_notificationButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static addFriendButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static joinByCodeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static addServerToggleButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverToggleBase<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static quickPlayButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static createNewWorldButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static createOnRealmsButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "create_on_realms_button">;
    static createOnRealmsButtonPanel_createOnRealmsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static importWorldButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static syncLegacyWorldsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static notificationButtonTextLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "count" | "image1" | "image2">;
    static notificationButtonTextLayout_image1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static notificationButtonTextLayout_image2<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static notificationButtonTextLayout_count<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static notificationButtonLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "notification_button_label">;
    static notificationButtonLabelPanel_notificationButtonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static notificationContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static notificationButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "buttons">;
    static headerButtonPanel_buttons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "secondary" | "primary_panel">;
    static headerButtonPanel_buttons_primaryPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "primary">;
    static headerButtonPanel_buttons_primaryPanel_primary<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerButtonPanel_buttons_secondary<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerButtonPanelOptIn<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "buttons">;
    static headerButtonPanelOptIn_buttons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "secondary" | "primary_panel" | "ternary">;
    static headerButtonPanelOptIn_buttons_primaryPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "primary">;
    static headerButtonPanelOptIn_buttons_primaryPanel_primary<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerButtonPanelOptIn_buttons_secondary<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerButtonPanelOptIn_buttons_ternary<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerSingleButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "buttons">;
    static headerSingleButtonPanel_buttons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "primary">;
    static headerSingleButtonPanel_buttons_primary<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static openAccountSettingButtonGamecore<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonScrollPane<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "worlds_list_stack_panel">;
    static worldsScrollPanel_worldsListStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameTipItemPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "label_panel" | "more_info_button" | "info_bulb">;
    static gameTipItemPanel_infoBulb<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameTipItemPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameTipItemPanel_labelPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "realms_warning_text" | "padding_vertical" | "padding_vertical_1">;
    static gameTipItemPanel_labelPanel_paddingVertical<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameTipItemPanel_labelPanel_realmsWarningText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameTipItemPanel_labelPanel_paddingVertical1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameTipItemPanel_moreInfoButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmWarningTip<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "padding_vertical" | "info_panel">;
    static realmWarningTip_paddingVertical<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmWarningTip_infoPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newUiSwitchButtonOptionsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "unlock_template_options_button">;
    static newUiSwitchButtonOptionsPanel_unlockTemplateOptionsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static newUiServersSwitchButtonOptionsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_0" | "unlock_template_options_button">;
    static newUiServersSwitchButtonOptionsPanel_unlockTemplateOptionsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static newUiServersSwitchButtonOptionsPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "grid" | "padding_0" | "padding_2" | "legacy_world_item_grid" | "loading_legacy_worlds_panel" | "play_screen_warning" | "header_button" | "worlds_crossplatform_disabled_panel" | "worlds_crossplatform_disable_spacer" | "realms_panel" | "realms_multiplayer_blocked_panel" | "worlds_label" | "no_local_worlds_label" | "no_local_worlds_switch_setting" | "beta_retail_local_padding" | "beta_retail_local_worlds_label" | "beta_retail_local_grid" | "loading_legacy_worlds_panel_padding" | "legacy_worlds_button" | "upgrade_legacy_worlds_label" | "beta_retail_legacy_padding" | "beta_retail_legacy_worlds_label" | "beta_retail_legacy_grid" | "pad_hack_panel">;
    static worldsStackPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_playScreenWarning<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_headerButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "buttons" | "quick_play">;
    static worldsStackPanel_headerButton_quickPlay<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_headerButton_buttons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_worldsCrossplatformDisabledPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_worldsCrossplatformDisableSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_realmsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "personal_realms" | "padding_1" | "sign_in_to_view_realms_button" | "create_on_realms_button_panel" | "realms_label" | "realms_previews_panel" | "placeholder_personal_realms_panel" | "realms_trial_panel" | "realms_nintendo_first_realm_purchase_panel">;
    static worldsStackPanel_realmsPanel_realmsLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_realmsPanel_signInToViewRealmsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_realmsPanel_realmsPreviewsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_world_item_button" | "new_offers_icon">;
    static worldsStackPanel_realmsPanel_realmsPreviewsPanel_newOffersIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_realmsPanel_realmsPreviewsPanel_realmsWorldItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_realmsPanel_createOnRealmsButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_realmsPanel_personalRealms<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_realmsPanel_placeholderPersonalRealmsPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "padding" | "progress_loading_bars" | "placeholder_loading_personal_realms" | "loading_friends_realms_label">;
    static worldsStackPanel_realmsPanel_placeholderPersonalRealmsPanel_placeholderLoadingPersonalRealms<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_realmsPanel_placeholderPersonalRealmsPanel_loadingFriendsRealmsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_realmsPanel_placeholderPersonalRealmsPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_realmsPanel_placeholderPersonalRealmsPanel_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_realmsPanel_realmsTrialPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_world_item_button">;
    static worldsStackPanel_realmsPanel_realmsTrialPanel_realmsWorldItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_realmsPanel_realmsNintendoFirstRealmPurchasePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_world_item_button">;
    static worldsStackPanel_realmsPanel_realmsNintendoFirstRealmPurchasePanel_realmsWorldItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_realmsPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_realmsMultiplayerBlockedPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "text_panel" | "open_uri_button" | "open_account_setting_button_gamecore">;
    static worldsStackPanel_realmsMultiplayerBlockedPanel_textPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_realmsMultiplayerBlockedPanel_openUriButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_realmsMultiplayerBlockedPanel_openAccountSettingButtonGamecore<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_worldsLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_grid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_noLocalWorldsLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_noLocalWorldsSwitchSetting<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_betaRetailLocalPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_betaRetailLocalWorldsLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_betaRetailLocalGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_loadingLegacyWorldsPanelPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_legacyWorldsButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "legacy_worlds_label" | "sync_legacy_worlds_button_panel">;
    static worldsStackPanel_legacyWorldsButton_legacyWorldsLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_legacyWorldsButton_syncLegacyWorldsButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button">;
    static worldsStackPanel_legacyWorldsButton_syncLegacyWorldsButtonPanel_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_loadingLegacyWorldsPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "padding" | "progress_loading_bars" | "loading_legacy_worlds_label">;
    static worldsStackPanel_loadingLegacyWorldsPanel_loadingLegacyWorldsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_loadingLegacyWorldsPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_loadingLegacyWorldsPanel_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_upgradeLegacyWorldsLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_legacyWorldItemGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_betaRetailLegacyPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_betaRetailLegacyWorldsLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_betaRetailLegacyGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsStackPanel_padHackPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noLocalWorldsSwitchSetting<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bg">;
    static noLocalWorldsSwitchSetting_bg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "no_local_worlds_switch_setting" | "no_local_worlds_get_help">;
    static noLocalWorldsSwitchSetting_bg_noLocalWorldsSwitchSetting<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noLocalWorldsSwitchSetting_bg_noLocalWorldsGetHelp<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noLocalWorldsLaunchHelp<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageLocationDropdownPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding1" | "storage_location_dropdown">;
    static storageLocationDropdownPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageLocationDropdownPanel_storageLocationDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageLocationDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static switchStorageTypeContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightCenteredLoadingLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightLoadingLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadingLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldListLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "list_label">;
    static worldListLabelPanel_listLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldListLabelWithColorPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "list_label" | "colored_square_sizer">;
    static worldListLabelWithColorPanel_coloredSquareSizer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "colored_square">;
    static worldListLabelWithColorPanel_coloredSquareSizer_coloredSquare<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldListLabelWithColorPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldListLabelWithColorPanel_listLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static emptyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emptyGrid<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lanServersScrollContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack_panel">;
    static friendsScrollPanel_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_0" | "friends_grid" | "open_account_setting_button_gamecore" | "header_button" | "pad_hack_panel" | "friends_screen_warning" | "friends_crossplatform_disabled_panel" | "friends_crossplatform_disable_spacer" | "joinable_realms_panel" | "no_friends_grid_message" | "switch_find_cross_platform_friend_button" | "add_friend_button_padding" | "cross_platform_friends_grid" | "no_cross_platform_friends_grid_message" | "general_no_multiplayer_grid_message" | "lan_grid">;
    static friendsScrollPanel_stackPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_friendsScreenWarning<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_headerButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "add_friend_and_invite_panel">;
    static friendsScrollPanel_stackPanel_headerButton_addFriendAndInvitePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_friendsCrossplatformDisabledPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_friendsCrossplatformDisableSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_joinableRealmsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "friends_realms" | "padding_1" | "sign_in_to_view_realms_button_friends" | "friends_realms_label" | "placeholder_loading_friends_panel" | "get_offline_authcode_message_panel" | "no_realms_grid">;
    static friendsScrollPanel_stackPanel_joinableRealmsPanel_friendsRealmsLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_joinableRealmsPanel_signInToViewRealmsButtonFriends<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_joinableRealmsPanel_friendsRealms<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_joinableRealmsPanel_placeholderLoadingFriendsPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "padding" | "progress_loading_bars" | "loading_friends_realms_label" | "placeholder_loading_friends_realms">;
    static friendsScrollPanel_stackPanel_joinableRealmsPanel_placeholderLoadingFriendsPanel_placeholderLoadingFriendsRealms<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_joinableRealmsPanel_placeholderLoadingFriendsPanel_loadingFriendsRealmsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_joinableRealmsPanel_placeholderLoadingFriendsPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_joinableRealmsPanel_placeholderLoadingFriendsPanel_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_joinableRealmsPanel_getOfflineAuthcodeMessagePanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "focus_border" | "content_stack">;
    static friendsScrollPanel_stackPanel_joinableRealmsPanel_getOfflineAuthcodeMessagePanel_contentStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "image_panel" | "message_panel">;
    static friendsScrollPanel_stackPanel_joinableRealmsPanel_getOfflineAuthcodeMessagePanel_contentStack_messagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "message_label">;
    static friendsScrollPanel_stackPanel_joinableRealmsPanel_getOfflineAuthcodeMessagePanel_contentStack_messagePanel_messageLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_joinableRealmsPanel_getOfflineAuthcodeMessagePanel_contentStack_imagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "link_image">;
    static friendsScrollPanel_stackPanel_joinableRealmsPanel_getOfflineAuthcodeMessagePanel_contentStack_imagePanel_linkImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_joinableRealmsPanel_getOfflineAuthcodeMessagePanel_focusBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "pressed" | "hover">;
    static friendsScrollPanel_stackPanel_joinableRealmsPanel_getOfflineAuthcodeMessagePanel_focusBorder_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_joinableRealmsPanel_getOfflineAuthcodeMessagePanel_focusBorder_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_joinableRealmsPanel_noRealmsGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_joinableRealmsPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_friendsGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_padHackPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_noFriendsGridMessage<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_switchFindCrossPlatformFriendButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_addFriendButtonPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_crossPlatformFriendsGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_noCrossPlatformFriendsGridMessage<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_generalNoMultiplayerGridMessage<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_lanGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollPanel_stackPanel_openAccountSettingButtonGamecore<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static manuallyAddedServersScrollingContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "padding_3" | "more_servers_grid" | "more_servers_label">;
    static manuallyAddedServersScrollingContent_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static manuallyAddedServersScrollingContent_moreServersLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static manuallyAddedServersScrollingContent_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static manuallyAddedServersScrollingContent_moreServersGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static manuallyAddedServersScrollingContent_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serversContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "new_ui_servers_switch_button_options_panel" | "featured_servers_panel" | "more_servers_divider" | "more_servers_panel">;
    static serversContentPanel_newUiServersSwitchButtonOptionsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serversContentPanel_featuredServersPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "loading_featured_panel" | "featured_servers_label" | "third_party_featured_grid">;
    static serversContentPanel_featuredServersPanel_loadingFeaturedPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "loading_featured_servers_panel" | "loading_friends_realms_label">;
    static serversContentPanel_featuredServersPanel_loadingFeaturedPanel_loadingFriendsRealmsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static serversContentPanel_featuredServersPanel_loadingFeaturedPanel_loadingFeaturedServersPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serversContentPanel_featuredServersPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serversContentPanel_featuredServersPanel_featuredServersLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static serversContentPanel_featuredServersPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serversContentPanel_featuredServersPanel_thirdPartyFeaturedGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static serversContentPanel_featuredServersPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serversContentPanel_moreServersDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serversContentPanel_moreServersPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack_panel">;
    static serverScrollPanel_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "servers_crossplatform_disabled_panel" | "no_featured_server_connection" | "more_servers_blocked_panel" | "server_content" | "add_server_button">;
    static serverScrollPanel_stackPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverScrollPanel_stackPanel_serversCrossplatformDisabledPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverScrollPanel_stackPanel_noFeaturedServerConnection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverScrollPanel_stackPanel_moreServersBlockedPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "open_uri_button" | "server_multiplayer_privileges_blocked">;
    static serverScrollPanel_stackPanel_moreServersBlockedPanel_serverMultiplayerPrivilegesBlocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverScrollPanel_stackPanel_moreServersBlockedPanel_openUriButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverScrollPanel_stackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverScrollPanel_stackPanel_serverContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverScrollPanel_stackPanel_addServerButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static crossplatformDisabledPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static crossplatformDisableSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingOffsets<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsScrollContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "worlds_stack_panel">;
    static worldsScrollContent_worldsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel_sizer" | "scrolling_panel_legacy_storage_sizer">;
    static worldsScrollContent_worldsStackPanel_scrollingPanelSizer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static worldsScrollContent_worldsStackPanel_scrollingPanelSizer_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsScrollContent_worldsStackPanel_scrollingPanelLegacyStorageSizer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static worldsScrollContent_worldsStackPanel_scrollingPanelLegacyStorageSizer_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsScrollContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static friendsScrollContent_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static showServersPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_panel" | "right_panel" | "divider_panel">;
    static showServersPanel_leftPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static showServersPanel_leftPanel_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static showServersPanel_dividerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_divider">;
    static showServersPanel_dividerPanel_mainDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static showServersPanel_rightPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverScrollContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "severs_panel" | "feature_server_message_panel">;
    static serverScrollContent_seversPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offset_panel" | "show_servers_panel">;
    static serverScrollContent_seversPanel_offsetPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "servers_sunsetting_warning">;
    static serverScrollContent_seversPanel_offsetPanel_serversSunsettingWarning<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverScrollContent_seversPanel_showServersPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverScrollContent_featureServerMessagePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad" | "open_account_setting_button_gamecore" | "featured_servers_label" | "feature_server_message_panel">;
    static serverScrollContent_featureServerMessagePanel_featuredServersLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverScrollContent_featureServerMessagePanel_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverScrollContent_featureServerMessagePanel_featureServerMessagePanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "label_panel_layout">;
    static serverScrollContent_featureServerMessagePanel_featureServerMessagePanel_labelPanelLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static serverScrollContent_featureServerMessagePanel_featureServerMessagePanel_labelPanelLayout_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverScrollContent_featureServerMessagePanel_openAccountSettingButtonGamecore<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverContentArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "third_party_scrolling_panel" | "additional_server_scrolling_panel" | "add_server_pane">;
    static serverContentArea_thirdPartyScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverContentArea_additionalServerScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverContentArea_addServerPane<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabFront<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabFrontMiddle<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabBack<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static XTabBack<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabTextStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "text_section" | "count_section">;
    static tabTextStackPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabTextStackPanel_textSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static tabTextStackPanel_textSection_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabTextStackPanel_countSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "count_background_image">;
    static tabTextStackPanel_countSection_countBackgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "count">;
    static tabTextStackPanel_countSection_countBackgroundImage_count<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonNavigationTabContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "icon_section" | "count_text">;
    static commonNavigationTabContent_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonNavigationTabContent_iconSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static commonNavigationTabContent_iconSection_icon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonNavigationTabContent_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonNavigationTabContent_countText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsNavigationTabContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "icon_section" | "count_text" | "icon_section_2" | "icon_section_nobounce" | "icon_section_nobounce_2" | "icon_section_notification">;
    static friendsNavigationTabContent_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsNavigationTabContent_iconSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static friendsNavigationTabContent_iconSection_icon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsNavigationTabContent_iconSection2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static friendsNavigationTabContent_iconSection2_icon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsNavigationTabContent_iconSectionNobounce<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static friendsNavigationTabContent_iconSectionNobounce_icon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsNavigationTabContent_iconSectionNobounce2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static friendsNavigationTabContent_iconSectionNobounce2_icon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsNavigationTabContent_iconSectionNotification<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon1" | "icon2">;
    static friendsNavigationTabContent_iconSectionNotification_icon1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsNavigationTabContent_iconSectionNotification_icon2<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsNavigationTabContent_countText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "x_image">;
    static closeNavigationTab_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeNavigationTab_xImage<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "content">;
    static commonTabContentPanel_background<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTabContentPanel_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTabContentPanelType<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduTabContentPanelLayout<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "server_tab_content_panel" | "worlds_tab_content" | "friends_tab_content">;
    static eduTabContentPanelLayout_worldsTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduTabContentPanelLayout_friendsTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduTabContentPanelLayout_serverTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialTabContentPanelLayout<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "worlds_tab_content">;
    static trialTabContentPanelLayout_worldsTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultTabContentPanelLayout<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "server_tab_content_panel" | "worlds_tab_content" | "friends_tab_content">;
    static defaultTabContentPanelLayout_worldsTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultTabContentPanelLayout_friendsTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultTabContentPanelLayout_serverTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabNavigationPanelLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "navigation_tabs" | "close_navigation_tab">;
    static tabNavigationPanelLayout_navigationTabs<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static tabNavigationPanelLayout_navigationTabs_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabNavigationPanelLayout_closeNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "close_button">;
    static tabNavigationPanelLayout_closeNavigationTab_closeButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTabNavigationPanelLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduTabNavigationPanelLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "world_navigation_tab" | "friends_navigation_tab" | "server_navigation_tab">;
    static eduTabNavigationPanelLayout_worldNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduTabNavigationPanelLayout_friendsNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduTabNavigationPanelLayout_serverNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialTabNavigationPanelLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "world_navigation_tab">;
    static trialTabNavigationPanelLayout_worldNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultTabNavigationPanelLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "world_navigation_tab" | "friends_navigation_tab" | "server_navigation_tab">;
    static defaultTabNavigationPanelLayout_worldNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultTabNavigationPanelLayout_friendsNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultTabNavigationPanelLayout_serverNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonPlayScreenPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playScreenPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_left_bumper" | "gamepad_helper_right_bumper" | "tab_navigation_panel" | "tab_content_panel" | "keyboard_helper_left_bracket" | "keyboard_helper_right_bracket">;
    static playScreenPanel_tabNavigationPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playScreenPanel_tabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playScreenPanel_gamepadHelperLeftBumper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playScreenPanel_gamepadHelperRightBumper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playScreenPanel_keyboardHelperLeftBracket<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playScreenPanel_keyboardHelperRightBracket<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultPlayScreenPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialPlayScreenPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduPlayScreenPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static playScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_factory" | "main_control" | "editor_text_panel">;
    static playScreenContent_mainControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playScreenContent_editorTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playScreenContent_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogJoinByCode<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helpers" | "join_by_code_popup_background" | "join_by_code_popup_content">;
    static popupDialogJoinByCode_joinByCodePopupBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogJoinByCode_joinByCodePopupContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogJoinByCode_gamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static joinByCodePopupBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static joinByCodePopupContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_bg" | "popup_stack_panel">;
    static joinByCodePopupContent_popupDialogBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static joinByCodePopupContent_popupStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "join_by_code_popup_dialog_header" | "spacing_1" | "join_by_code_popup_dialog_upper_body" | "spacing_2" | "join_by_code_popup_dialog_lower_body">;
    static joinByCodePopupContent_popupStackPanel_joinByCodePopupDialogHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static joinByCodePopupContent_popupStackPanel_spacing1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static joinByCodePopupContent_popupStackPanel_joinByCodePopupDialogUpperBody<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static joinByCodePopupContent_popupStackPanel_spacing2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static joinByCodePopupContent_popupStackPanel_joinByCodePopupDialogLowerBody<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static joinByCodePopupDialogHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "close_button" | "join_by_code_popup_header_text">;
    static joinByCodePopupDialogHeader_joinByCodePopupHeaderText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static joinByCodePopupDialogHeader_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static joinByCodePopupHeaderText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static joinByCodePopupDialogUpperBody<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacing" | "margin1" | "join_by_code_popup_code_text_field" | "join_by_code_popup_join_button" | "margin2">;
    static joinByCodePopupDialogUpperBody_margin1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static joinByCodePopupDialogUpperBody_joinByCodePopupCodeTextField<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static joinByCodePopupDialogUpperBody_spacing<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static joinByCodePopupDialogUpperBody_joinByCodePopupJoinButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static joinByCodePopupDialogUpperBody_margin2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static joinByCodePopupCodeTextField<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static joinByCodePopupJoinButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static joinByCodePopupHelpText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static lowerBodyDefaultContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "info_text">;
    static lowerBodyDefaultContent_infoText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static joinByCodePopupDialogLowerBody<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "default">;
    static joinByCodePopupDialogLowerBody_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static openAccountSettingButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogHighPing<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helpers" | "high_ping_popup_background" | "high_ping_popup_content">;
    static popupDialogHighPing_highPingPopupBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogHighPing_highPingPopupContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogHighPing_gamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupTwoButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label" | "common_panel" | "button_panel" | "panel_indent">;
    static popupTwoButtons_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupTwoButtons_titleLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupTwoButtons_panelIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inside_header_panel">;
    static popupTwoButtons_panelIndent_insideHeaderPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupTwoButtons_buttonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad" | "left_button_panel" | "right_button_panel">;
    static popupTwoButtons_buttonPanel_leftButtonPanel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupTwoButtons_buttonPanel_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupTwoButtons_buttonPanel_rightButtonPanel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static highPingPopupContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad_2" | "pad_3" | "pad_1" | "pad_0" | "ping_images_panel" | "text_line_1" | "text_line_2">;
    static highPingPopupContentStackPanel_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static highPingPopupContentStackPanel_pingImagesPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "ping_images_stack_panel">;
    static highPingPopupContentStackPanel_pingImagesPanel_pingImagesStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad" | "medium_connection" | "low_connection">;
    static highPingPopupContentStackPanel_pingImagesPanel_pingImagesStackPanel_mediumConnection<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static highPingPopupContentStackPanel_pingImagesPanel_pingImagesStackPanel_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static highPingPopupContentStackPanel_pingImagesPanel_pingImagesStackPanel_lowConnection<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static highPingPopupContentStackPanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static highPingPopupContentStackPanel_textLine1<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static highPingPopupContentStackPanel_pad2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static highPingPopupContentStackPanel_textLine2<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static highPingPopupContentStackPanel_pad3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static highPingPopupJoinButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static highPingPopupCancelButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static copyright<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static developmentVersion<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static version<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "version" | "development_version" | "copyright">;
    static editorTextPanel_copyright<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorTextPanel_developmentVersion<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorTextPanel_version<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorSettingsImageContent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorSettingsMenuButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorServerContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "more_servers_panel">;
    static editorServerContentPanel_moreServersPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorTabContentPanelLayout<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "server_tab_content_panel" | "worlds_tab_content" | "friends_tab_content">;
    static editorTabContentPanelLayout_worldsTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorTabContentPanelLayout_friendsTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorTabContentPanelLayout_serverTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorPlayScreenPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class PocketContainers extends Class {
    static genericLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label" | "header_background">;
    static headerPanel_headerBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerPanel_titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "x" | "inventory_header" | "container_header">;
    static headerArea_x<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerArea_inventoryHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerArea_containerHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelOutline<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static backgroundPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static inventoryPanel_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static halfScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_panel">;
    static halfScreen_inventoryPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "container" | "header" | "flying_item_renderer" | "gamepad_cursor" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory" | "inventory_selected_icon_button" | "bg" | "hold_icon" | "inventory">;
    static panel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_bg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_inventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_container<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_gamepadCursor<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_holdIcon<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static smallChestPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static largeChestPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hopperPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dispenserPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropperPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static enderChestPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static shulkerBoxPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static barrelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class PopupDialog extends Class {
    static popupDialogBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogMessage<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogButtonWithBinding<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogLeftButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogMiddleButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogRightButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalBackgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static blackTintImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalTitleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalLabelText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "text">;
    static modalLabelText_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalLabelText_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalCheckboxButton<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, "header_description_stack_panel">;
    static modalCheckboxButton_headerDescriptionStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "checkbox_visuals" | "buffer_panel" | "padding_panel">;
    static modalCheckboxButton_headerDescriptionStackPanel_checkboxVisuals<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalCheckboxButton_headerDescriptionStackPanel_bufferPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static modalCheckboxButton_headerDescriptionStackPanel_bufferPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalCheckboxButton_headerDescriptionStackPanel_paddingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogTextWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalLeftButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalMiddleButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalRightcancelButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static threeButtonsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left" | "right" | "middle">;
    static threeButtonsPanel_left<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static threeButtonsPanel_middle<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static threeButtonsPanel_right<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static twoButtonsCheckboxPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left" | "middle" | "checkbox">;
    static twoButtonsCheckboxPanel_left<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static twoButtonsCheckboxPanel_middle<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static twoButtonsCheckboxPanel_checkbox<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static destructiveThreeButtonsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left" | "right" | "middle">;
    static destructiveThreeButtonsPanel_left<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static destructiveThreeButtonsPanel_middle<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static destructiveThreeButtonsPanel_right<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static twoButtonsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left" | "right">;
    static twoButtonsPanel_left<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static twoButtonsPanel_right<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static destructiveTwoButtonsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left" | "right">;
    static destructiveTwoButtonsPanel_left<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static destructiveTwoButtonsPanel_right<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static singleButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left">;
    static singleButtonPanel_left<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static singleButtonCheckboxPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left" | "checkbox">;
    static singleButtonCheckboxPanel_left<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static singleButtonCheckboxPanel_checkbox<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalDialogBase<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalDialogWithButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title" | "text" | "button_panel" | "background_with_buttons">;
    static modalDialogWithButtons_backgroundWithButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalDialogWithButtons_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalDialogWithButtons_text<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalDialogWithButtons_buttonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalInputPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "black_tint_image">;
    static modalInputPanel_blackTintImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalDialogPopup<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "modal_input">;
    static modalDialogPopup_modalInput<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "modal_bg_buttons" | "black_background">;
    static modalDialogPopup_modalInput_modalBgButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalDialogPopup_modalInput_blackBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static hollow2BottomButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "lower_button_controls">;
    static hollow2BottomButtonPanel_lowerButtonControls<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static formFitScreenWithTitleAndCloseAndBottomButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static formFitScreenWithTitleAndClose<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "panel_background" | "panel_content">;
    static formFitScreenWithTitleAndClose_panelBackground<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static formFitScreenWithTitleAndClose_panelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "header" | "close_button_panel" | "contents" | "lower_contents">;
    static formFitScreenWithTitleAndClose_panelContent_header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "header_content">;
    static formFitScreenWithTitleAndClose_panelContent_header_headerContent<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static formFitScreenWithTitleAndClose_panelContent_closeButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "close">;
    static formFitScreenWithTitleAndClose_panelContent_closeButtonPanel_close<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static formFitScreenWithTitleAndClose_panelContent_contents<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "contents" | "content_padding">;
    static formFitScreenWithTitleAndClose_panelContent_contents_contents<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static formFitScreenWithTitleAndClose_panelContent_contents_contentPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static formFitScreenWithTitleAndClose_panelContent_lowerContents<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "contents">;
    static formFitScreenWithTitleAndClose_panelContent_lowerContents_contents<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static formFitModalDialogPopup<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "background" | "content">;
    static formFitModalDialogPopup_background<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static formFitModalDialogPopup_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressDialogPopup<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "button" | "background" | "title" | "progress_content">;
    static progressDialogPopup_background<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressDialogPopup_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressDialogPopup_progressContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressDialogPopup_button<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "progress_bar" | "progress_titles">;
    static progressContent_progressTitles<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "current_progress_label" | "total_progress_label">;
    static progressContent_progressTitles_currentProgressLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressContent_progressTitles_totalProgressLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressContent_progressBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static currentProgressLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static totalProgressLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressBarIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "empty_progress_bar_icon" | "full_progress_bar_icon" | "progress_bar_nub">;
    static progressBarIcon_fullProgressBarIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressBarIcon_emptyProgressBarIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressBarIcon_progressBarNub<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static emptyProgressBarIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static fullProgressBarIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressBarNub<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Portfolio extends Class {
    static screenshot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static trashDefault<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static trashHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static trashPressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoTrashButtonLeft<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static photoTrashButtonLeft_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoTrashButtonLeft_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoTrashButtonLeft_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoTrashButtonRight<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static photoTrashButtonRight_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoTrashButtonRight_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoTrashButtonRight_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoNumber<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoNumberLeft<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoNumberRight<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoCornerBl<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoCornerBr<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoCornerTr<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoCornerTl<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pagePhoto<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "screenshot" | "screenshot_frame" | "photo_corner_bl" | "photo_corner_br" | "photo_corner_tr" | "photo_corner_tl">;
    static pagePhoto_screenshot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pagePhoto_screenshotFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pagePhoto_photoCornerBl<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pagePhoto_photoCornerBr<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pagePhoto_photoCornerTl<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pagePhoto_photoCornerTr<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pickItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button" | "photo">;
    static pickItem_photo<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pickItem_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static header<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textCenteringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "header">;
    static textCenteringPanel_header<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static pickScrollingContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "header" | "portfolio_grid">;
    static pickScrollingContent_header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pickScrollingContent_portfolioGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noPickPhotosAlertLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static pickPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "scroll" | "close_button" | "no_pick_photos_alert_label">;
    static pickPanel_scroll<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pickPanel_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static pickPanel_noPickPhotosAlertLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditBoxDefaultIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditBoxHoverIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "focus_border_white">;
    static textEditBoxHoverIndent_focusBorderWhite<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditControl<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, "default" | "locked" | "pressed" | "hover" | "clipper_panel">;
    static textEditControl_clipperPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "place_holder_control" | "display_text">;
    static textEditControl_clipperPanel_displayText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditControl_clipperPanel_placeHolderControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditControl_locked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "edit_box_indent">;
    static textEditControl_locked_editBoxIndent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditControl_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditControl_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditControl_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text_edit_control" | "screenshot" | "screenshot_frame" | "photo_corner_bl" | "photo_corner_br" | "photo_corner_tr" | "photo_corner_tl">;
    static photoItem_screenshot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoItem_screenshotFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoItem_textEditControl<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoItem_photoCornerBl<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoItem_photoCornerBr<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoItem_photoCornerTl<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoItem_photoCornerTr<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "photo_item">;
    static photoGridItem_photoItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoListGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static prevButtonDefault<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static prevButtonHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static prevButtonPressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoPagePrevButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static photoPagePrevButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoPagePrevButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoPagePrevButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static nextButtonDefault<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static nextButtonHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static nextButtonPressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoPageNextButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static photoPageNextButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoPageNextButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoPageNextButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static convertButtonDefault<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static convertButtonHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static convertButtonPressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoConvertLeftButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static photoConvertLeftButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoConvertLeftButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoConvertLeftButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoConvertRightButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static photoConvertRightButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoConvertRightButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoConvertRightButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bottomButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "im_content_button" | "export_button" | "add_photo_button">;
    static bottomButtonPanel_exportButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static bottomButtonPanel_imContentButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static bottomButtonPanel_addPhotoButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static imContentButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static exportButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static addPhotoButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookBinding<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookSpine<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "book_binding" | "top_spine" | "bottom_spine">;
    static bookBackground_bookBinding<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookBackground_topSpine<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookBackground_bottomSpine<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "header_background">;
    static headerPanel_headerBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonDefault<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonPressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static closeButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static noPhotosAlertLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookAndButtonsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "book_panel" | "bottom_button_panel">;
    static bookAndButtonsPanel_bookPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "close_button" | "book_background" | "photo_trash_button_left" | "photo_trash_button_right" | "photo_number_left" | "photo_number_right" | "photo_list_grid" | "photo_page_prev_button" | "photo_page_next_button" | "photo_convert_left_button" | "photo_convert_right_button" | "no_photos_alert_label">;
    static bookAndButtonsPanel_bookPanel_bookBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookAndButtonsPanel_bookPanel_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookAndButtonsPanel_bookPanel_photoListGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookAndButtonsPanel_bookPanel_photoNumberLeft<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookAndButtonsPanel_bookPanel_photoNumberRight<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookAndButtonsPanel_bookPanel_photoTrashButtonLeft<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookAndButtonsPanel_bookPanel_photoTrashButtonRight<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookAndButtonsPanel_bookPanel_photoPagePrevButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookAndButtonsPanel_bookPanel_photoPageNextButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookAndButtonsPanel_bookPanel_photoConvertLeftButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookAndButtonsPanel_bookPanel_photoConvertRightButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookAndButtonsPanel_bookPanel_noPhotosAlertLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookAndButtonsPanel_bottomButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static portfolioScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static portfolioScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "root_panel">;
    static portfolioScreenContent_rootPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "pick_panel" | "book_and_buttons_panel">;
    static portfolioScreenContent_rootPanel_bookAndButtonsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static portfolioScreenContent_rootPanel_pickPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Progress extends Class {
    static popupDialogBase<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "left" | "background" | "right" | "scrolling_panel" | "totalSelected" | "totalSelectedSize">;
    static popupDialogBase_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogBase_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogBase_totalSelected<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogBase_totalSelectedSize<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogBase_left<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogBase_right<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxVisual<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "control" | "$toggle_visual">;
    static checkboxVisual_$toggleVisual<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxVisual_control<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxVisualsUnchecked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxVisualsChecked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxVisualsUncheckedLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxVisualsCheckedLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxVisualsUncheckedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxVisualsCheckedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxWithLabelCore<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxWithLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "checkbox_with_label_core">;
    static checkboxWithLabel_checkboxWithLabelCore<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourcePackGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourcePackSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "required_resource_pack_list_grid" | "optional_resource_pack_list_grid">;
    static resourcePackSection_requiredResourcePackListGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourcePackSection_optionalResourcePackListGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static simplePopupDialogBase<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "dialog_background_hollow_3">;
    static simplePopupDialogBase_dialogBackgroundHollow3<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "control">;
    static simplePopupDialogBase_dialogBackgroundHollow3_control<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "content_panel">;
    static simplePopupDialogBase_dialogBackgroundHollow3_control_contentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title" | "description" | "padding_1" | "padding_0" | "padding_2" | "padding_3" | "padding_4" | "padding_5" | "description2" | "top_optional_button" | "middle_button" | "bottom_button">;
    static simplePopupDialogBase_dialogBackgroundHollow3_control_contentPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static simplePopupDialogBase_dialogBackgroundHollow3_control_contentPanel_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static simplePopupDialogBase_dialogBackgroundHollow3_control_contentPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static simplePopupDialogBase_dialogBackgroundHollow3_control_contentPanel_description<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static simplePopupDialogBase_dialogBackgroundHollow3_control_contentPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static simplePopupDialogBase_dialogBackgroundHollow3_control_contentPanel_description2<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static simplePopupDialogBase_dialogBackgroundHollow3_control_contentPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static simplePopupDialogBase_dialogBackgroundHollow3_control_contentPanel_topOptionalButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static simplePopupDialogBase_dialogBackgroundHollow3_control_contentPanel_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static simplePopupDialogBase_dialogBackgroundHollow3_control_contentPanel_middleButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static simplePopupDialogBase_dialogBackgroundHollow3_control_contentPanel_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static simplePopupDialogBase_dialogBackgroundHollow3_control_contentPanel_bottomButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourcePackDownloadPopupBase<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourcePackDownloadServerRequired<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourcePackDownloadOptionalAndRequired<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourcePackDownloadOptional<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourcePackDownloadRequired<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static normalStrokeButton<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressScreenText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressTitleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressBarText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static codeText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static codeNumber<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressLoadingSpinner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static fancyProgressLoadingBars<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "empty_progress_bar_icon" | "full_progress_bar_icon" | "progress_bar_nub">;
    static fancyProgressLoadingBars_fullProgressBarIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static fancyProgressLoadingBars_emptyProgressBarIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static fancyProgressLoadingBars_progressBarNub<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressBar<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressBarNub<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static thickProgressBarIconBase<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static thickProgressBarIconEmpty<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static thickProgressBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "empty_progress_bar_icon" | "full_progress_bar_icon">;
    static thickProgressBar_fullProgressBarIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static thickProgressBar_emptyProgressBarIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudUploadProgressBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "waveform_loading_bar" | "determinate_loading_bar">;
    static eduCloudUploadProgressBar_waveformLoadingBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudUploadProgressBar_determinateLoadingBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cancelButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static retryButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static abortButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static okButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static titlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_title_text" | "progress_bar" | "progress_bar_text">;
    static titlePanel_progressTitleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static titlePanel_progressBarText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static titlePanel_progressBar<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cancel_button">;
    static buttonPanel_cancelButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cancel_button">;
    static modalButtonPanel_cancelButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalButtonPanelWithRetry<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cancel_button" | "retry_button" | "abort_button">;
    static modalButtonPanelWithRetry_abortButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalButtonPanelWithRetry_cancelButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalButtonPanelWithRetry_retryButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalOkButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "ok_button">;
    static modalOkButtonPanel_okButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_a">;
    static gamepadHelpers_gamepadHelperA<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudUploadImage<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "world_image_wrapper" | "arrow_image_wrapper" | "cloud_image_wrapper">;
    static eduCloudUploadImage_worldImageWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "fetch_world_image">;
    static eduCloudUploadImage_worldImageWrapper_fetchWorldImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudUploadImage_arrowImageWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "arrow_image">;
    static eduCloudUploadImage_arrowImageWrapper_arrowImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudUploadImage_cloudImageWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "upload_cloud_image">;
    static eduCloudUploadImage_cloudImageWrapper_uploadCloudImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudFetchImage<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "world_image_wrapper" | "cloud_image_wrapper" | "spyglass_image_wrapper">;
    static eduCloudFetchImage_cloudImageWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "fetch_cloud_image">;
    static eduCloudFetchImage_cloudImageWrapper_fetchCloudImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudFetchImage_spyglassImageWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "spyglass_image">;
    static eduCloudFetchImage_spyglassImageWrapper_spyglassImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudFetchImage_worldImageWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "fetch_world_image">;
    static eduCloudFetchImage_worldImageWrapper_fetchWorldImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudDownloadImage<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "world_image_wrapper" | "arrow_image_wrapper" | "cloud_image_wrapper">;
    static eduCloudDownloadImage_cloudImageWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "download_cloud_image">;
    static eduCloudDownloadImage_cloudImageWrapper_downloadCloudImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudDownloadImage_arrowImageWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "arrow_image">;
    static eduCloudDownloadImage_arrowImageWrapper_arrowImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudDownloadImage_worldImageWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "download_world_image">;
    static eduCloudDownloadImage_worldImageWrapper_downloadWorldImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalProgressPanelNoCancel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content" | "common_panel">;
    static modalProgressPanelNoCancel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalProgressPanelNoCancel_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_bars" | "title_panel">;
    static modalProgressPanelNoCancel_content_titlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalProgressPanelNoCancel_content_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalProgressPanelWithCancel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content" | "common_panel" | "modal_button_panel">;
    static modalProgressPanelWithCancel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalProgressPanelWithCancel_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_bars" | "title_panel">;
    static modalProgressPanelWithCancel_content_titlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalProgressPanelWithCancel_content_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalProgressPanelWithCancel_modalButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_bars" | "title_panel" | "button_panel">;
    static progressPanel_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressPanel_titlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressPanel_buttonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalProgressScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static deleteProgressScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsLoadingBackground<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "solid_blue">;
    static realmsLoadingBackground_solidBlue<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "gradient">;
    static realmsLoadingBackground_solidBlue_gradient<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesLoadingProgressScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldLoadingProgressScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldLoadingScreenBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static overworldLoadingBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "background_gradient">;
    static overworldLoadingBackground_backgroundGradient<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static overworldLoadingProgressScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static netherLoadingBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "background_gradient">;
    static netherLoadingBackground_backgroundGradient<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static netherLoadingProgressScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static theendLoadingBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "background_gradient">;
    static theendLoadingBackground_backgroundGradient<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static theendLoadingProgressScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSavingProgressScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static fetchingEduCloudWorlds<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudDownloadProgressScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldConvertModalProgressScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_factory" | "progress_content_panel">;
    static progressScreenContent_progressContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressScreenContent_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helpers" | "progress_panel">;
    static progressContentPanel_progressPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressContentPanel_gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "modal_progress_panel">;
    static modalScreenContent_modalProgressPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldModalProgressPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "common_panel" | "base_content" | "inside_content">;
    static worldModalProgressPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldModalProgressPanel_baseContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_title_text" | "progress_bar_text">;
    static worldModalProgressPanel_baseContent_progressTitleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldModalProgressPanel_baseContent_progressBarText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldModalProgressPanel_insideContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "loading_bar_panel" | "vertical_padding" | "vertical_padding_2" | "modal_button_panel">;
    static worldModalProgressPanel_insideContent_loadingBarPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_bars" | "fancy_progress_loading_bars">;
    static worldModalProgressPanel_insideContent_loadingBarPanel_fancyProgressLoadingBars<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldModalProgressPanel_insideContent_loadingBarPanel_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldModalProgressPanel_insideContent_verticalPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldModalProgressPanel_insideContent_modalButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldModalProgressPanel_insideContent_verticalPadding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudUploadPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "common_panel" | "base_content">;
    static cloudUploadPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudUploadPanel_baseContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_text" | "loading_bar_panel" | "progress_title_text" | "edu_cloud_upload_image">;
    static cloudUploadPanel_baseContent_progressTitleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudUploadPanel_baseContent_progressText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudUploadPanel_baseContent_eduCloudUploadImage<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudUploadPanel_baseContent_loadingBarPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_bars">;
    static cloudUploadPanel_baseContent_loadingBarPanel_progressLoadingBars<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudErrorPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "common_panel" | "content_wrapper">;
    static cloudErrorPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudErrorPanel_contentWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_content" | "title_wrapper" | "error_text_tts_wrapper" | "error_button_content">;
    static cloudErrorPanel_contentWrapper_titleWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_title_text">;
    static cloudErrorPanel_contentWrapper_titleWrapper_progressTitleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudErrorPanel_contentWrapper_errorTextTtsWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tts_border" | "edu_cloud_error_text_wrapper">;
    static cloudErrorPanel_contentWrapper_errorTextTtsWrapper_ttsBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudErrorPanel_contentWrapper_errorTextTtsWrapper_eduCloudErrorTextWrapper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "error_code" | "vertical_padding" | "vertical_padding_2" | "edu_cloud_error_text" | "cloud_support_link">;
    static cloudErrorPanel_contentWrapper_errorTextTtsWrapper_eduCloudErrorTextWrapper_eduCloudErrorText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudErrorPanel_contentWrapper_errorTextTtsWrapper_eduCloudErrorTextWrapper_verticalPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudErrorPanel_contentWrapper_errorTextTtsWrapper_eduCloudErrorTextWrapper_errorCode<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "code_number" | "code_text">;
    static cloudErrorPanel_contentWrapper_errorTextTtsWrapper_eduCloudErrorTextWrapper_errorCode_codeText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudErrorPanel_contentWrapper_errorTextTtsWrapper_eduCloudErrorTextWrapper_errorCode_codeNumber<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudErrorPanel_contentWrapper_errorTextTtsWrapper_eduCloudErrorTextWrapper_verticalPadding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudErrorPanel_contentWrapper_errorTextTtsWrapper_eduCloudErrorTextWrapper_cloudSupportLink<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "cloud_support_hypertext" | "padded_icon">;
    static cloudErrorPanel_contentWrapper_errorTextTtsWrapper_eduCloudErrorTextWrapper_cloudSupportLink_cloudSupportHypertext<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudErrorPanel_contentWrapper_errorTextTtsWrapper_eduCloudErrorTextWrapper_cloudSupportLink_paddedIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static cloudErrorPanel_contentWrapper_errorTextTtsWrapper_eduCloudErrorTextWrapper_cloudSupportLink_paddedIcon_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudErrorPanel_contentWrapper_buttonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "modal_button_panel">;
    static cloudErrorPanel_contentWrapper_buttonContent_modalButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudErrorPanel_contentWrapper_errorButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "download_ok_button" | "download_cancel_button">;
    static cloudErrorPanel_contentWrapper_errorButtonContent_downloadOkButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudErrorPanel_contentWrapper_errorButtonContent_downloadCancelButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudFetchPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "common_panel" | "base_content">;
    static cloudFetchPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudFetchPanel_baseContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_text" | "loading_bar_panel" | "progress_title_text" | "edu_cloud_fetch_image">;
    static cloudFetchPanel_baseContent_progressTitleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudFetchPanel_baseContent_progressText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudFetchPanel_baseContent_eduCloudFetchImage<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudFetchPanel_baseContent_loadingBarPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_bars">;
    static cloudFetchPanel_baseContent_loadingBarPanel_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudDownloadPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "common_panel" | "loading_bar_panel" | "base_content">;
    static cloudDownloadPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudDownloadPanel_baseContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_title_text" | "progress_bar_text" | "edu_cloud_download_image">;
    static cloudDownloadPanel_baseContent_progressTitleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudDownloadPanel_baseContent_progressBarText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudDownloadPanel_baseContent_eduCloudDownloadImage<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudDownloadPanel_loadingBarPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_bars">;
    static cloudDownloadPanel_loadingBarPanel_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldConvertModalProgressScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_factory" | "title_panel_content" | "world_modal_progress_panel" | "mobile_data_icon">;
    static worldConvertModalProgressScreenContent_mobileDataIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldConvertModalProgressScreenContent_titlePanelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldConvertModalProgressScreenContent_worldModalProgressPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldConvertModalProgressScreenContent_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsLoadingWorldModalProgressScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_factory" | "world_modal_progress_panel" | "mobile_data_icon" | "realms_title_image" | "server_region_connected">;
    static realmsLoadingWorldModalProgressScreenContent_mobileDataIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsLoadingWorldModalProgressScreenContent_realmsTitleImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsLoadingWorldModalProgressScreenContent_worldModalProgressPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsLoadingWorldModalProgressScreenContent_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsLoadingWorldModalProgressScreenContent_serverRegionConnected<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "server_region_label" | "server_region_connected_text" | "server_region_ping_icon">;
    static realmsLoadingWorldModalProgressScreenContent_serverRegionConnected_serverRegionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsLoadingWorldModalProgressScreenContent_serverRegionConnected_serverRegionConnectedText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsLoadingWorldModalProgressScreenContent_serverRegionConnected_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsLoadingWorldModalProgressScreenContent_serverRegionConnected_serverRegionPingIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSaveModalProgressScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_factory" | "save_icon" | "title_panel_content" | "world_modal_progress_panel">;
    static worldSaveModalProgressScreenContent_titlePanelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSaveModalProgressScreenContent_worldModalProgressPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSaveModalProgressScreenContent_saveIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSaveModalProgressScreenContent_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudUploadScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_factory" | "title_panel_content" | "cloud_upload_panel" | "cloud_upload_error_panel" | "cloud_conflict_resolution_popup_factory">;
    static cloudUploadScreenContent_titlePanelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudUploadScreenContent_cloudUploadPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudUploadScreenContent_cloudUploadErrorPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudUploadScreenContent_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudUploadScreenContent_cloudConflictResolutionPopupFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudFetchScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_factory" | "cloud_fetch_panel">;
    static eduCloudFetchScreenContent_cloudFetchPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudFetchScreenContent_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudDownloadScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "popup_dialog_factory" | "cloud_download_panel" | "cloud_download_error_panel">;
    static cloudDownloadScreenContent_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudDownloadScreenContent_cloudDownloadPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudDownloadScreenContent_cloudDownloadErrorPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudDownloadScreenContent_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static autoSave<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mobileDataIosIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mobileDataAndroidIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mobileDataIconText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mobileDataIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text" | "icon_android" | "icon_ios">;
    static mobileDataIcon_iconAndroid<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mobileDataIcon_iconIos<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mobileDataIcon_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class RatingPrompt extends Class {
    static paddingHorizontal<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paddingVertical<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingPromptYesLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_label">;
    static ratingPromptYesLabel_buttonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingPromptNoLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_label">;
    static ratingPromptNoLabel_buttonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingPromptYesButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingPromptNoButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogImageWithBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "dialog_image">;
    static dialogImageWithBorder_dialogImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_3" | "yes_button" | "no_button">;
    static buttonPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel_yesButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel_noButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static imagePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_2" | "dialog_image_with_border">;
    static imagePanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imagePanel_dialogImageWithBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "button_panel" | "padding_1" | "padding_0" | "image_panel">;
    static mainPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_imagePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_buttonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingPromptScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingPromptScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class RealmsPlus extends Class {
    static realmsPlusPdpScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusUpgradeNoticeScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static purpleBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "bottom_left_particles" | "top_right_particles">;
    static purpleBackground_bottomLeftParticles<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static purpleBackground_topRightParticles<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainBackground<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dark_blue" | "grey_gradient">;
    static mainBackground_darkBlue<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainBackground_greyGradient<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkBlueBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gradientImageStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "gradient" | "solid_pink">;
    static gradientImageStack_solidPink<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gradientImageStack_gradient<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gradientContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content_panel" | "gradient">;
    static gradientContentPanel_gradient<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gradientContentPanel_contentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusScreenMainPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusMainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "root_panel" | "popup_dialog_factory">;
    static realmsPlusMainPanel_rootPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel">;
    static realmsPlusMainPanel_rootPanel_mainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusMainPanel_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "selector_area" | "content_area" | "left_right_pane_divider">;
    static dialogContent_selectorArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent_contentArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent_leftRightPaneDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static selectorArea_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableSelectorAreaContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "focus_reset_input_panel" | "content_toggle" | "faq_toggle" | "toggle_section_divider" | "buy_now_toggle" | "xbl_btn_panel" | "realmsPlus_toggle">;
    static scrollableSelectorAreaContent_realmsPlusToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableSelectorAreaContent_contentToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableSelectorAreaContent_faqToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableSelectorAreaContent_toggleSectionDivider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableSelectorAreaContent_buyNowToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableSelectorAreaContent_xblBtnPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "xbl_btn">;
    static scrollableSelectorAreaContent_xblBtnPanel_xblBtn<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableSelectorAreaContent_focusResetInputPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionToggleBase<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabButtonText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleBase<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "toggle">;
    static toggleBase_toggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleBase_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyNowToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftRightPaneDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "control">;
    static contentArea_control<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static contentArea_control_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentSectionTopPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionBase<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyNowContentSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content" | "content_section_top_padding">;
    static buyNowContentSection_contentSectionTopPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyNowContentSection_content<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static markdownBackgroundAnimated<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_banner" | "realms_plus_normal" | "realms_plus_hover">;
    static markdownBackgroundAnimated_realmsBanner<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static markdownBackgroundAnimated_realmsPlusNormal<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static markdownBackgroundAnimated_realmsPlusHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static markdownBackground<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "banner_panel" | "triangle_panel">;
    static markdownBackground_bannerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "banner">;
    static markdownBackground_bannerPanel_banner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "banner_stack_panel">;
    static markdownBackground_bannerPanel_banner_bannerStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "0">;
    static markdownBackground_bannerPanel_banner_bannerStackPanel_0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static markdownBackground_trianglePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "triangle">;
    static markdownBackground_trianglePanel_triangle<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static emptyLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fullWidthSectionDivider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class RealmsplusUpgradeNoticeScreen extends Class {
    static screen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dialog">;
    static mainContent_dialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static content<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_0" | "image_row_positioner" | "wall_of_text" | "buttons_row">;
    static content_imageRowPositioner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image_row">;
    static content_imageRowPositioner_imageRow<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_border" | "plus_panel" | "right_border">;
    static content_imageRowPositioner_imageRow_leftBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "left_img">;
    static content_imageRowPositioner_imageRow_leftBorder_leftImg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static content_imageRowPositioner_imageRow_plusPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "plus_img">;
    static content_imageRowPositioner_imageRow_plusPanel_plusImg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static content_imageRowPositioner_imageRow_rightBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "right_img">;
    static content_imageRowPositioner_imageRow_rightBorder_rightImg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static content_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static content_wallOfText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "the_text">;
    static content_wallOfText_theText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static content_buttonsRow<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left" | "right" | "button_spacer">;
    static content_buttonsRow_left<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static content_buttonsRow_buttonSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static content_buttonsRow_right<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonlbl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static buttonlbl_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static lbuttonLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rbuttonLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class RealmsAllowlist extends Class {
    static spacingGap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsContainingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "friends_panel">;
    static friendsContainingPanel_friendsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "player_filter_text_box" | "loading_friends" | "add_friends_and_invite_link_panel" | "option_dropdown_permissions" | "player_filter_label" | "spacing_gap_members_top" | "lists">;
    static friendsPanel_addFriendsAndInviteLinkPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPanel_optionDropdownPermissions<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPanel_playerFilterLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPanel_playerFilterTextBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPanel_spacingGapMembersTop<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPanel_lists<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "members_label" | "members_stack" | "spacing_gap_members_bottom" | "members_page_panel" | "invited_friends_label" | "invited_stack" | "spacing_gap_invited_friends" | "invited_friends_page_panel" | "uninvited_friends_label" | "uninvited_stack" | "spacing_gap_uninvited_friends" | "uninvited_friends_page_panel" | "blocked_players_label" | "blocked_players_stack" | "spacing_gap_blocked_players" | "blocked_players_page_panel" | "no_invites_label">;
    static friendsPanel_lists_membersLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPanel_lists_membersStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPanel_lists_spacingGapMembersBottom<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPanel_lists_membersPagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPanel_lists_invitedFriendsLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPanel_lists_invitedStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPanel_lists_spacingGapInvitedFriends<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPanel_lists_invitedFriendsPagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPanel_lists_uninvitedFriendsLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPanel_lists_uninvitedStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPanel_lists_spacingGapUninvitedFriends<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPanel_lists_uninvitedFriendsPagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPanel_lists_blockedPlayersLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPanel_lists_blockedPlayersStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPanel_lists_spacingGapBlockedPlayers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPanel_lists_blockedPlayersPagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPanel_lists_noInvitesLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsPanel_loadingFriends<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static addFriendsAndInviteLinkPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "allowlist_stack_panel">;
    static addFriendsAndInviteLinkPanel_allowlistStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacing" | "find_friends_button_panel" | "options_panel">;
    static addFriendsAndInviteLinkPanel_allowlistStackPanel_findFriendsButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addFriendsAndInviteLinkPanel_allowlistStackPanel_spacing<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addFriendsAndInviteLinkPanel_allowlistStackPanel_optionsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "clear_members_button">;
    static addFriendsAndInviteLinkPanel_allowlistStackPanel_optionsPanel_clearMembersButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionsIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountLinkImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountLinkIcon<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "account_link_image" | "space_01" | "space_03">;
    static accountLinkIcon_space01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountLinkIcon_accountLinkImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountLinkIcon_space03<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static findFriendsButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "find_friends_button">;
    static findFriendsButtonPanel_findFriendsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static invitedFriendsLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "friend_title">;
    static invitedFriendsLabel_friendTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerFilterLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "player_filter_title">;
    static playerFilterLabel_playerFilterTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static membersLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "loading_text" | "padding_panel" | "friend_title">;
    static membersLabel_friendTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static membersLabel_paddingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static membersLabel_loadingText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static blockedPlayersLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "friend_title">;
    static blockedPlayersLabel_friendTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static uninvitedFriendsLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "friend_title">;
    static uninvitedFriendsLabel_friendTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static noInvitesLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadingFriends<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static blockedGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "blocked_panel">;
    static blockedGridItem_blockedPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static factoryStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static memberFactoryXblProfile<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static memberFactoryLinkedAccount<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static invitedFactoryXblProfile<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static invitedFactoryLinkedAccount<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uninvitedFactoryXblProfile<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uninvitedFactoryLinkedAccount<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blockedFactoryXblProfile<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blockedFactoryLinkedAccount<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblProfilePanelFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblProfileBlockedPanelFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedAccountPanelFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedAccountBlockedPanelFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblProfilePanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "progress" | "player_status_panel" | "xbl_user_panel" | "right_controls_panel">;
    static xblProfilePanel_playerStatusPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblProfilePanel_xblUserPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblProfilePanel_rightControlsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblProfilePanel_progress<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static factoryGapTemplate<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "gapped_control" | "spacing1">;
    static factoryGapTemplate_gappedControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static factoryGapTemplate_spacing1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gappedXblProfilePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gappedLinkedAccountPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gappedBlockedXblProfilePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gappedBlockedLinkedAccountPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blockedPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "xbl_user_panel" | "unblock_button">;
    static blockedPanel_xblUserPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blockedPanel_unblockButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedAccountPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "progress" | "right_controls_panel" | "linked_account_positioning_panel">;
    static linkedAccountPanel_linkedAccountPositioningPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedAccountPanel_rightControlsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedAccountPanel_progress<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedAccountBlockedPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "progress" | "unblock_button" | "linked_account_positioning_panel">;
    static linkedAccountBlockedPanel_linkedAccountPositioningPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedAccountBlockedPanel_unblockButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedAccountBlockedPanel_progress<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblUserPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "gamerpic_panel" | "platform_icon_positioner" | "spacing1" | "spacing2" | "gamertag_label_panel">;
    static xblUserPanel_spacing1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblUserPanel_platformIconPositioner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblUserPanel_gamerpicPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblUserPanel_spacing2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblUserPanel_gamertagLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyUserPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacing1" | "spacing2" | "profile_picture" | "third_party_profile_label">;
    static thirdPartyUserPanel_spacing1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyUserPanel_profilePicture<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyUserPanel_spacing2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyUserPanel_thirdPartyProfileLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedProfilePicturesPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pp2" | "account_link" | "pp1">;
    static linkedProfilePicturesPanel_pp2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedProfilePicturesPanel_accountLink<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedProfilePicturesPanel_pp1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformProfileNames<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "friend_grid_xbl_gamertag" | "friend_grid_third_party_tag" | "spacer_02" | "spacer_03">;
    static platformProfileNames_friendGridThirdPartyTag<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformProfileNames_spacer02<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformProfileNames_friendGridXblGamertag<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformProfileNames_spacer03<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedUserStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "platform_icon_positioner" | "spacing1" | "spacing2" | "profile_picture" | "allow_offset_control" | "platform_names_label" | "spacing3">;
    static linkedUserStackPanel_allowOffsetControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "player_status_panel">;
    static linkedUserStackPanel_allowOffsetControl_playerStatusPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedUserStackPanel_platformIconPositioner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "platform_icon">;
    static linkedUserStackPanel_platformIconPositioner_platformIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedUserStackPanel_spacing1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedUserStackPanel_profilePicture<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedUserStackPanel_spacing2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedUserStackPanel_platformNamesLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkedUserStackPanel_spacing3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamerpicPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "black_border" | "gamer_pic">;
    static gamerpicPanel_blackBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamerpicPanel_gamerPic<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyProfilePicPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "black_border" | "third_party_profile_picture">;
    static thirdPartyProfilePicPanel_blackBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyProfilePicPanel_thirdPartyProfilePicture<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamertag_label" | "real_name_label">;
    static gamertagLabelPanel_gamertagLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagLabelPanel_realNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyProfileLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "profile_name_label">;
    static thirdPartyProfileLabel_profileNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyProfileNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightSettingsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "member_settings">;
    static rightSettingsPanel_memberSettings<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static memberSettings<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "minus_button" | "horizontal_space" | "member_permissions" | "op_deop_button">;
    static memberSettings_minusButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static memberSettings_horizontalSpace<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static memberSettings_memberPermissions<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static memberSettings_opDeopButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightControlsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "right_settings_panel" | "uninvited_friends_invite_button">;
    static rightControlsPanel_rightSettingsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightControlsPanel_uninvitedFriendsInviteButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerStatusPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "player_online_icon" | "player_offline_icon">;
    static playerStatusPanel_playerOnlineIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerStatusPanel_playerOfflineIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsDropdown<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "option_dropdown_permissions" | "vertical_space">;
    static permissionsDropdown_verticalSpace<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static permissionsDropdown_optionDropdownPermissions<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static minusButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static unblockLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static unblockButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static opDeopButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static findFriendsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static blackBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamerPic<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyProfilePicture<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerOnlineIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerOfflineIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static plusIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static moreIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static shareIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static minusIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static opIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static deopIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerFilterTextBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static pagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "page_text" | "prev_button" | "next_button">;
    static pagePanel_prevButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static pagePanel_pageText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static pagePanel_nextButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsAllowlistPanelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsAllowlistContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsAllowlistContentPanelChildren<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "done_button" | "realms_allowlist_panel_content">;
    static realmsAllowlistContentPanelChildren_realmsAllowlistPanelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsAllowlistContentPanelChildren_doneButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsAllowlistScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsAllowlistContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "root_panel">;
    static realmsAllowlistContent_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "realms_allowlist_content_panel">;
    static realmsAllowlistContent_rootPanel_realmsAllowlistContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transparentCloseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class RealmsCommon extends Class {
    static pendingInvitesIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkBanner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkBannerHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyBanner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainBanner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static hollowBanner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_playOnRealm<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helpers" | "play_on_realm_popup_background" | "play_on_realm_popup_content">;
    static popupDialog_playOnRealm_playOnRealmPopupBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_playOnRealm_gamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_playOnRealm_playOnRealmPopupContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOnRealmPopupBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOnRealmPopupContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_bg" | "play_on_realm_popup_dialog_header" | "play_on_realm_popup_dialog_upper_body" | "play_on_realm_popup_dialog_lower_body">;
    static playOnRealmPopupContent_popupDialogBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOnRealmPopupContent_playOnRealmPopupDialogHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOnRealmPopupContent_playOnRealmPopupDialogUpperBody<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOnRealmPopupContent_playOnRealmPopupDialogLowerBody<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOnRealmPopupDialogHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "close_button" | "play_on_realm_popup_dialog_header_text">;
    static playOnRealmPopupDialogHeader_playOnRealmPopupDialogHeaderText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOnRealmPopupDialogHeader_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOnRealmPopupDialogHeaderText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOnRealmPopupDialogUpperBody<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background_panel" | "play_on_realm_banner" | "play_on_realm_panel">;
    static playOnRealmPopupDialogUpperBody_playOnRealmBanner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOnRealmPopupDialogUpperBody_playOnRealmPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOnRealmPopupDialogUpperBody_backgroundPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "black_background">;
    static playOnRealmPopupDialogUpperBody_backgroundPanel_blackBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOnRealmPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "play_on_realm_content_panel">;
    static playOnRealmPanel_playOnRealmContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "play_image_panel" | "play_text_panel">;
    static playOnRealmPanel_playOnRealmContentPanel_playImagePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacing_gap_image" | "realms_image">;
    static playOnRealmPanel_playOnRealmContentPanel_playImagePanel_spacingGapImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOnRealmPanel_playOnRealmContentPanel_playImagePanel_realmsImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOnRealmPanel_playOnRealmContentPanel_playTextPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacing_gap_text_1" | "play_on_realm_text_1" | "spacing_gap_text_2" | "play_on_realm_text_2">;
    static playOnRealmPanel_playOnRealmContentPanel_playTextPanel_spacingGapText1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOnRealmPanel_playOnRealmContentPanel_playTextPanel_playOnRealmText1<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOnRealmPanel_playOnRealmContentPanel_playTextPanel_spacingGapText2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOnRealmPanel_playOnRealmContentPanel_playTextPanel_playOnRealmText2<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOnRealmPopupDialogLowerBody<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_panel">;
    static playOnRealmPopupDialogLowerBody_buttonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacing_gap2" | "spacing_gap1" | "play_with_friends_button" | "play_solo_button" | "go_back_button">;
    static playOnRealmPopupDialogLowerBody_buttonPanel_playWithFriendsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOnRealmPopupDialogLowerBody_buttonPanel_spacingGap1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOnRealmPopupDialogLowerBody_buttonPanel_playSoloButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOnRealmPopupDialogLowerBody_buttonPanel_spacingGap2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOnRealmPopupDialogLowerBody_buttonPanel_goBackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class RealmsCreate extends Class {
    static titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static enterNamePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "name_edit" | "name_label_0">;
    static enterNamePanel_nameLabel0<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static enterNamePanel_nameEdit<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedOptionCheckbox<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedOptionCheckboxEmpty<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedOptionCheckboxFilled<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_label" | "selected_option_checkbox_empty" | "selected_option_checkbox_filled">;
    static checkboxPanel_selectedOptionCheckboxEmpty<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxPanel_selectedOptionCheckboxFilled<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxPanel_buttonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsOptionButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static chooseDurationPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "name_label" | "choose_duration_stack_panel">;
    static chooseDurationPanel_nameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static chooseDurationPanel_chooseDurationStackPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "long" | "short">;
    static chooseDurationPanel_chooseDurationStackPanel_short<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static chooseDurationPanel_chooseDurationStackPanel_long<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static chooseTierPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "name_label" | "choose_tier_stack_panel">;
    static chooseTierPanel_nameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static chooseTierPanel_chooseTierStackPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "player_count_2">;
    static chooseTierPanel_chooseTierStackPanel_playerCount2<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewTermsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static privacyPolicyButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsAndConditionsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "name_label" | "terms_string_panel">;
    static termsAndConditionsPanel_nameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsAndConditionsPanel_termsStringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "buttons_stack_panel" | "banner_fill">;
    static termsAndConditionsPanel_termsStringPanel_bannerFill<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsAndConditionsPanel_termsStringPanel_buttonsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "view_terms_button" | "privacy_policy_button" | "agree_panel">;
    static termsAndConditionsPanel_termsStringPanel_buttonsStackPanel_agreePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "checkbox_control">;
    static termsAndConditionsPanel_termsStringPanel_buttonsStackPanel_agreePanel_checkboxControl<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsAndConditionsPanel_termsStringPanel_buttonsStackPanel_viewTermsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsAndConditionsPanel_termsStringPanel_buttonsStackPanel_privacyPolicyButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static confirmationPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "create_realms_button">;
    static confirmationPanel_createRealmsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static createRealmsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_0" | "create_realms_text_panel">;
    static createRealmsStackPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createRealmsStackPanel_createRealmsTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static createRealmsTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "create">;
    static createRealmsTextPanel_create<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static stackItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "name" | "duration" | "realms_terms_info" | "realms_switch_nso_info" | "padding_1" | "padding_0" | "tier" | "toc">;
    static scrollStackPanel_name<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "enter_name_panel">;
    static scrollStackPanel_name_enterNamePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollStackPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollStackPanel_duration<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "choose_duration_panel">;
    static scrollStackPanel_duration_chooseDurationPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollStackPanel_tier<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "choose_tier_panel">;
    static scrollStackPanel_tier_chooseTierPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollStackPanel_toc<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "terms_and_conditions_panel">;
    static scrollStackPanel_toc_termsAndConditionsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollStackPanel_realmsTermsInfo<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "label_panel">;
    static scrollStackPanel_realmsTermsInfo_labelPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "text_description_wrapper" | "text_description_wrapper_extra">;
    static scrollStackPanel_realmsTermsInfo_labelPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollStackPanel_realmsTermsInfo_labelPanel_textDescriptionWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollStackPanel_realmsTermsInfo_labelPanel_textDescriptionWrapperExtra<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollStackPanel_realmsTermsInfo_labelPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollStackPanel_realmsSwitchNsoInfo<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "terms_section_label">;
    static termsSection_termsSectionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsSectionExtra<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "terms_section_label">;
    static termsSectionExtra_termsSectionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel" | "confirmation_panel" | "padding_1" | "padding_0">;
    static mainPanel_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_confirmationPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel">;
    static content_mainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsCreateScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsCreateContentAndFactory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_factory" | "realms_create_content">;
    static realmsCreateContentAndFactory_realmsCreateContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsCreateContentAndFactory_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class RealmsInviteLinkSettings extends Class {
    static genericSectionWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "generic_section">;
    static genericSectionWrapper_genericSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkBanner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static clipboardIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionWrap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "description">;
    static descriptionWrap_description<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteLinkUrl<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "invite_link_url_wrapper" | "link_copy_container">;
    static linkPanel_inviteLinkUrlWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkPanel_linkCopyContainer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "link_copy">;
    static linkPanel_linkCopyContainer_linkCopy<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "link_panel" | "spacing_gap_0" | "invite_link_title" | "invite_link_description" | "spacing_gap_1" | "spacing_gap_2" | "activate_link_toggle" | "activate_link_description" | "spacing_gap_3" | "infinite_link_toggle" | "spacing_gap_4" | "share_link_title" | "share_link_description" | "spacing_gap_5" | "share_link_button" | "spacing_gap_6" | "remove_link_title" | "remove_invite_link_button">;
    static generalContent_spacingGap0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalContent_inviteLinkTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalContent_inviteLinkDescription<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalContent_spacingGap1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalContent_linkPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalContent_spacingGap2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalContent_activateLinkToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalContent_activateLinkDescription<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalContent_spacingGap3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalContent_infiniteLinkToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalContent_spacingGap4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalContent_shareLinkTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalContent_shareLinkDescription<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalContent_spacingGap5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalContent_shareLinkButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalContent_spacingGap6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalContent_removeLinkTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalContent_removeInviteLinkButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteLinkExpiration<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacing_gap_0" | "spacing_gap_1" | "spacing_gap_2" | "expiry_title" | "expiration_description" | "expiration_panel" | "expiration_dropdown">;
    static advancedContent_spacingGap0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedContent_expiryTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedContent_spacingGap1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedContent_expirationDescription<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedContent_spacingGap2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedContent_expirationPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "invite_link_expiration_wrapper">;
    static advancedContent_expirationPanel_inviteLinkExpirationWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedContent_expirationDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static expirationDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "advanced_button" | "spacing_gap_0" | "general_button">;
    static selectorPanel_spacingGap0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPanel_generalButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPanel_advancedButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "general_section" | "advanced_section">;
    static sectionContentPanels_generalSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_advancedSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class RealmsPendingInvitations extends Class {
    static panelText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannerPanelBase<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "indent_panel">;
    static bannerPanelBase_background<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannerPanelBase_indentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static bannerPanelBase_indentPanel_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannerPanelHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmInviteButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmOwnerLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static ttsGamertagItemInfoWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagItemInfo<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "rnl" | "rol">;
    static gamertagItemInfo_rnl<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagItemInfo_rol<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static acceptButtonContent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static declineButtonContent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmAcceptButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmDeclineButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmAcceptedPanel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagItemContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "d" | "a" | "lb" | "ap">;
    static gamertagItemContent_lb<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagItemContent_a<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagItemContent_d<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagItemContent_ap<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagItemGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static showFriendsOnlyToggleStateContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "checkbox_holding_panel" | "hide_invites_text_panel">;
    static showFriendsOnlyToggleStateContent_checkboxHoldingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hide_invites">;
    static showFriendsOnlyToggleStateContent_checkboxHoldingPanel_hideInvites<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static showFriendsOnlyToggleStateContent_hideInvitesTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hide_invites_text">;
    static showFriendsOnlyToggleStateContent_hideInvitesTextPanel_hideInvitesText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static showFriendsOnlyToggleOnStateContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static showFriendsOnlyToggleOnState<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static showFriendsOnlyToggleOffStateContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static showFriendsOnlyToggleOffState<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static showFriendsOnlyToggleOnHoverStateContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static showFriendsOnlyToggleOnHoverState<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static showFriendsOnlyToggleOffHoverStateContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static showFriendsOnlyToggleOffHoverState<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static showFriendsOnlyToggleOnLockedStateContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static showFriendsOnlyToggleOnLockedState<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static showFriendsOnlyToggleOffLockedStateContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static showFriendsOnlyToggleOffLockedState<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static showFriendsOnlyToggle<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "a" | "b">;
    static gamepadHelpers_a<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers_b<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noInvitesLabelWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noInvitesLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static noInvitesLabel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPendingInvitationList<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "upper_padding" | "lower_padding" | "sfop" | "gig" | "nil">;
    static realmsPendingInvitationList_upperPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPendingInvitationList_sfop<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPendingInvitationList_gig<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPendingInvitationList_lowerPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPendingInvitationList_nil<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPendingInvitationsScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsInvitationScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "root_panel">;
    static realmsInvitationScreenContent_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "main_panel" | "sgh">;
    static realmsInvitationScreenContent_rootPanel_mainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsInvitationScreenContent_rootPanel_sgh<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class RealmsPlusEnded extends Class {
    static subscriptionEndedScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static subscriptionEndedScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "root_panel">;
    static subscriptionEndedScreenContent_rootPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel" | "gamepad_helpers">;
    static subscriptionEndedScreenContent_rootPanel_gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static subscriptionEndedScreenContent_rootPanel_mainPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "dialog">;
    static mainPanel_dialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_a">;
    static gamepadHelpers_gamepadHelperA<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "main_content" | "pad_2" | "pad_1" | "pad_0" | "button_center_panel">;
    static contentStackPanel_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentStackPanel_mainContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentStackPanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentStackPanel_buttonCenterPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "buttons">;
    static contentStackPanel_buttonCenterPanel_buttons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentStackPanel_pad2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_content_stack_panel">;
    static mainContentPanel_mainContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad" | "image_panel" | "text_panel">;
    static mainContentPanel_mainContentStackPanel_imagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainContentPanel_mainContentStackPanel_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainContentPanel_mainContentStackPanel_textPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static mainContentPanel_mainContentStackPanel_textPanel_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad" | "more_info_button" | "renew_subscription_button">;
    static buttonsPanel_moreInfoButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonsPanel_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonsPanel_renewSubscriptionButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class RealmsSettings extends Class {
    static settingsScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static genericSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "$section_content_name">;
    static genericSection_$sectionContentName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static genericSectionWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "generic_section">;
    static genericSectionWrapper_genericSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerCountLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmDurationLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmSubscriptionOriginLabel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmConsumableToSubscriptionInfoLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static manageSubscriptionsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static deleteRealmButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static openRealmButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeRealmButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static subscriptionsSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "loading_view" | "loading_failed_view" | "loaded_view">;
    static subscriptionsSection_loadingView<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static subscriptionsSection_loadingFailedView<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static subscriptionsSection_loadedView<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "realm_duration_label" | "player_count_label" | "realm_subscription_origin_label" | "realm_consumable_to_subscription_info_label" | "manage_subscriptions_button" | "delete_realm_button" | "open_realm_button" | "close_realm_button" | "possible_store_mismatch" | "_0" | "_1">;
    static subscriptionsSection_loadedView_playerCountLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static subscriptionsSection_loadedView_realmDurationLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static subscriptionsSection_loadedView_possibleStoreMismatch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static subscriptionsSection_loadedView_realmSubscriptionOriginLabel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static subscriptionsSection_loadedView_realmConsumableToSubscriptionInfoLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static subscriptionsSection_loadedView_0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static subscriptionsSection_loadedView_deleteRealmButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static subscriptionsSection_loadedView_openRealmButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static subscriptionsSection_loadedView_closeRealmButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static subscriptionsSection_loadedView_1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static subscriptionsSection_loadedView_manageSubscriptionsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteLinkItemContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacing_gap" | "invite_link_item_name_and_expiry_text" | "invite_link_item_state_text">;
    static inviteLinkItemContent_inviteLinkItemNameAndExpiryText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "name_text" | "spacing_gap" | "expiry_text">;
    static inviteLinkItemContent_inviteLinkItemNameAndExpiryText_nameText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteLinkItemContent_inviteLinkItemNameAndExpiryText_spacingGap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteLinkItemContent_inviteLinkItemNameAndExpiryText_expiryText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteLinkItemContent_inviteLinkItemStateText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "state_text">;
    static inviteLinkItemContent_inviteLinkItemStateText_stateText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteLinkItemContent_spacingGap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteLinkItemTemplate<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "invite_link_item_button">;
    static inviteLinkItemTemplate_inviteLinkItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteLinksSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "loading_view" | "loading_failed_view" | "loaded_view">;
    static inviteLinksSection_loadingView<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteLinksSection_loadingFailedView<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteLinksSection_loadedView<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacing_gap_0" | "spacing_gap_1" | "invite_links_info" | "invite_links_grid" | "add_invite_link_button">;
    static inviteLinksSection_loadedView_spacingGap0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteLinksSection_loadedView_inviteLinksInfo<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteLinksSection_loadedView_inviteLinksGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteLinksSection_loadedView_spacingGap1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteLinksSection_loadedView_addInviteLinkButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "loading_view" | "loading_failed_view" | "loaded_view">;
    static advancedSection_loadingView<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedSection_loadingFailedView<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedSection_loadedView<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacing_gap_0" | "spacing_gap_1" | "server_preference" | "set_region_content" | "changes_not_applied_panel" | "region_help_button">;
    static advancedSection_loadedView_spacingGap0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedSection_loadedView_serverPreference<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedSection_loadedView_setRegionContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedSection_loadedView_changesNotAppliedPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "changes_not_applied_label">;
    static advancedSection_loadedView_changesNotAppliedPanel_changesNotAppliedLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedSection_loadedView_spacingGap1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedSection_loadedView_regionHelpButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static setRegionDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static regionDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static regionDropdownRadio<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static regionHelpButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacing_gap_1" | "external_link_icon" | "help_text">;
    static regionHelpButtonContent_externalLinkIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static regionHelpButtonContent_spacingGap1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static regionHelpButtonContent_helpText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "loading_view" | "loading_failed_view" | "loaded_view">;
    static savesSection_loadingView<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesSection_loadingFailedView<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesSection_loadedView<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "save_button" | "padding1" | "padding2" | "padding3" | "padding4" | "padding5" | "option_label_panel" | "storage_bar_panel" | "active_world_label_panel" | "storage_warning" | "padding6" | "tabs_container" | "padding7" | "restore_info" | "saves_help_button">;
    static savesSection_loadedView_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesSection_loadedView_optionLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_label">;
    static savesSection_loadedView_optionLabelPanel_optionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesSection_loadedView_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesSection_loadedView_storageBarPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesSection_loadedView_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesSection_loadedView_saveButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesSection_loadedView_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesSection_loadedView_activeWorldLabelPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "active_world_name_label" | "active_world_size_label">;
    static savesSection_loadedView_activeWorldLabelPanel_activeWorldNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesSection_loadedView_activeWorldLabelPanel_activeWorldSizeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesSection_loadedView_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesSection_loadedView_storageWarning<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesSection_loadedView_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesSection_loadedView_tabsContainer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tab_panel">;
    static savesSection_loadedView_tabsContainer_tabPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesSection_loadedView_padding7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesSection_loadedView_restoreInfo<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesSection_loadedView_savesHelpButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesHelpButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacing_gap_1" | "external_link_icon" | "help_text">;
    static savesHelpButtonContent_externalLinkIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesHelpButtonContent_spacingGap1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesHelpButtonContent_helpText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTabContentPanelType<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesTabContentPanelLayout<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "manual_tab_content" | "automatic_tab_content">;
    static savesTabContentPanelLayout_manualTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesTabContentPanelLayout_automaticTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTabNavigationPanelLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultTabNavigationPanelLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "manual_navigation_tab" | "automatic_navigation_tab">;
    static defaultTabNavigationPanelLayout_manualNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultTabNavigationPanelLayout_automaticNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageBarPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "storage_bar" | "storage_bar_label">;
    static storageBarPanel_storageBarLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageBarPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageBarPanel_storageBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "empty_progress_bar_beveled" | "storage_fill" | "storage_bar_beveled_overlay">;
    static storageBar_emptyProgressBarBeveled<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageBar_storageFill<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageBar_storageBarBeveledOverlay<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningTextPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding1" | "text_label" | "warning_panel">;
    static warningTextPanel_warningPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding1" | "padding2" | "warning_image">;
    static warningTextPanel_warningPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningTextPanel_warningPanel_warningImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningTextPanel_warningPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningTextPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningTextPanel_textLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static topTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static tabContent_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static manualNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automaticNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabNavigationPanelLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static tabNavigationPanelLayout_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTabScreenPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tab_navigation_panel" | "tab_content_panel">;
    static commonTabScreenPanel_tabNavigationPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTabScreenPanel_tabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupListTabPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "content">;
    static commonTabContentPanel_background<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTabContentPanel_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static manualTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automaticTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static manualScrollContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static manualScrollContent_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static manualScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "manual_stack_panel">;
    static manualScrollPanel_manualStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static manualTabInfoPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "info_label">;
    static manualTabInfoPanel_infoLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static manualStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "stack_panel" | "padding1" | "padding2" | "padding3" | "save_tab_info_label">;
    static manualStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static manualStackPanel_saveTabInfoLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static manualStackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static manualStackPanel_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static manualStackPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automaticScrollContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static automaticScrollContent_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automaticScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "automatic_stack_panel">;
    static automaticScrollPanel_automaticStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automaticTabInfoPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "info_label">;
    static automaticTabInfoPanel_infoLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static automaticStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "stack_panel" | "padding1" | "padding2" | "padding3" | "save_tab_info_label">;
    static automaticStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automaticStackPanel_saveTabInfoLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automaticStackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automaticStackPanel_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automaticStackPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionsIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesInfoAccordian<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "main_content_panel" | "sub_content_panel">;
    static savesInfoAccordian_mainContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "options_button" | "main_item_toggle">;
    static savesInfoAccordian_mainContentPanel_mainItemToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesInfoAccordian_mainContentPanel_optionsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesInfoAccordian_subContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "saves_content">;
    static savesInfoAccordian_subContentPanel_savesContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainItemContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_save_info_content">;
    static mainItemContent_mainSaveInfoContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left_content" | "right_content">;
    static mainItemContent_mainSaveInfoContent_leftContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "world_name" | "date_saved">;
    static mainItemContent_mainSaveInfoContent_leftContent_dateSaved<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "date_saved_label">;
    static mainItemContent_mainSaveInfoContent_leftContent_dateSaved_dateSavedLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainItemContent_mainSaveInfoContent_leftContent_worldName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "world_name_label">;
    static mainItemContent_mainSaveInfoContent_leftContent_worldName_worldNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainItemContent_mainSaveInfoContent_rightContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "save_data_size" | "down_icon">;
    static mainItemContent_mainSaveInfoContent_rightContent_saveDataSize<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "save_data_size_label">;
    static mainItemContent_mainSaveInfoContent_rightContent_saveDataSize_saveDataSizeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainItemContent_mainSaveInfoContent_rightContent_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainItemContent_mainSaveInfoContent_rightContent_downIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "options_icon">;
    static mainItemContent_mainSaveInfoContent_rightContent_downIcon_optionsIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionSavesInfoLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesInfoContainer<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "saves_info_content">;
    static savesInfoContainer_savesInfoContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesInfoContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "version_panel" | "pack_header_panel" | "world_packs_label">;
    static savesInfoContent_versionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesInfoContent_packHeaderPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static savesInfoContent_worldPacksLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static versionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left_content">;
    static versionPanel_leftContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "save_version_label">;
    static versionPanel_leftContent_saveVersionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static packHeaderPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left_content">;
    static packHeaderPanel_leftContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "packs_label">;
    static packHeaderPanel_leftContent_packsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static labelText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static branchGridItemContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "branch_text" | "commit_text">;
    static branchGridItemContent_branchText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static branchGridItemContent_commitText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static matchingItemButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "branch_text" | "commit_text">;
    static matchingItemButtonContent_branchText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static matchingItemButtonContent_commitText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static branchItemTemplate<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "branch_item_button">;
    static branchItemTemplate_branchItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static branchesGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static branchSetPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "set_branch_id_label">;
    static branchSetPanel_setBranchIdLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static versionFilterTextBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static branchPagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "page_text" | "prev_button" | "next_button">;
    static branchPagePanel_prevButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static branchPagePanel_pageText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static branchPagePanel_nextButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static branchesPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "version_filter_text_box" | "spacing_gap" | "spacing_gap_1" | "spacing_gap_2" | "spacing_gap_3" | "branches_grid" | "branch_set_panel" | "branch_page_panel" | "branch_label" | "set_branch_version_label" | "matching_version_label" | "matching_item_button" | "all_commits_label">;
    static branchesPanel_branchLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static branchesPanel_spacingGap1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static branchesPanel_setBranchVersionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static branchesPanel_branchSetPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static branchesPanel_spacingGap2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static branchesPanel_matchingVersionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static branchesPanel_matchingItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static branchesPanel_spacingGap3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static branchesPanel_allCommitsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static branchesPanel_versionFilterTextBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static branchesPanel_branchesGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static branchesPanel_spacingGap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static branchesPanel_branchPagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static branchSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "branches_panel">;
    static branchSection_branchesPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_backups<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "transparent_close_button" | "backup_restore_popup_content">;
    static popupDialog_backups_transparentCloseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_backups_backupRestorePopupContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupRestorePopupContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_bg" | "backup_restore_popup_dialog_header" | "backup_restore_popup_dialog_body">;
    static backupRestorePopupContent_popupDialogBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupRestorePopupContent_backupRestorePopupDialogHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupRestorePopupContent_backupRestorePopupDialogBody<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupRestorePopupDialogHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "backup_restore_popup_dialog_header_text">;
    static backupRestorePopupDialogHeader_backupRestorePopupDialogHeaderText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupRestorePopupDialogHeaderText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupRestorePopupDialogBody<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "backup_restore_loading_panel">;
    static backupRestorePopupDialogBody_backupRestoreLoadingPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupRestoreLoadingPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "backup_restore_loading_stack_panel">;
    static backupRestoreLoadingPanel_backupRestoreLoadingStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupRestoreLoadingStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "padding2" | "backup_restore_text_panel" | "backup_restore_loading_bar_panel">;
    static backupRestoreLoadingStackPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupRestoreLoadingStackPanel_backupRestoreTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupRestoreLoadingStackPanel_backupRestoreLoadingBarPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupRestoreLoadingStackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupRestoreTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "loading_text">;
    static backupRestoreTextPanel_loadingText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupRestoreLoadingBarPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_bars">;
    static backupRestoreLoadingBarPanel_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupReplaceIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupDownloadIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupGridItemContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacing_gap" | "backup_grid_item_icon_panel" | "backup_grid_item_name_and_time_since" | "backup_grid_item_date_and_time">;
    static backupGridItemContent_backupGridItemIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupGridItemContent_backupGridItemNameAndTimeSince<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupGridItemContent_backupGridItemDateAndTime<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupGridItemContent_spacingGap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupGridItemNameAndTimeSince<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "version_text" | "date_text" | "spacing_gap">;
    static backupGridItemNameAndTimeSince_dateText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupGridItemNameAndTimeSince_spacingGap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupGridItemNameAndTimeSince_versionText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupGridItemDateAndTime<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "size_text" | "time_text" | "spacing_gap">;
    static backupGridItemDateAndTime_timeText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupGridItemDateAndTime_spacingGap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupGridItemDateAndTime_sizeText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupGridItemIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "backup_replace_icon">;
    static backupGridItemIconPanel_backupReplaceIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupItemTemplate<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "backup_item_button" | "download_backup_panel">;
    static backupItemTemplate_backupItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupItemTemplate_downloadBackupPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "download_backup_button">;
    static backupItemTemplate_downloadBackupPanel_downloadBackupButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static downloadBackupButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "backup_panel">;
    static backupSection_backupPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupInfoLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupNetworkErrorLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacing_gap" | "spacing_gap2" | "progress_panel" | "backup_grid" | "backup_info_label" | "backup_network_error_label">;
    static backupPanel_spacingGap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupPanel_backupInfoLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupPanel_spacingGap2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupPanel_progressPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_bars">;
    static backupPanel_progressPanel_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupPanel_backupGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static backupPanel_backupNetworkErrorLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static testContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helpers" | "realms_allowlist_content_panel">;
    static testContent_realmsAllowlistContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static testContent_gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "play_button" | "advanced_button" | "disabled_play_button" | "expired_play_button" | "selector_group_label" | "world_button" | "members_button" | "saves_button" | "subscription_button" | "backup_button" | "dev_options_button" | "invite_links_button">;
    static selectorPanel_playButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPanel_disabledPlayButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPanel_expiredPlayButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPanel_selectorGroupLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPanel_worldButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPanel_membersButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPanel_savesButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPanel_subscriptionButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPanel_backupButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPanel_devOptionsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPanel_inviteLinksButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPanel_advancedButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "advanced_section" | "invite_links_section" | "saves_section" | "backup_section" | "world_section" | "players_section" | "subscription_section" | "dev_options_section">;
    static sectionContentPanels_worldSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_playersSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_subscriptionSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_inviteLinksSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_advancedSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_devOptionsSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_backupSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_savesSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class RealmsSlots extends Class {
    static verticalPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalPaddingSiblingHeight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsBackground<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gradient" | "particle_1" | "particle_2">;
    static realmsBackground_gradient<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsBackground_particle1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsBackground_particle2<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static plus<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static check<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldThumbnail<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsStoriesIconGlyph<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "realms_stories_icon">;
    static realmsStoriesIconGlyph_realmsStoriesIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static editRealmButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsFeedButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static unreadStoryCountText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static unreadStoryCountTextBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static unreadStoryCountPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static unreadStoryCountPanel_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, "background">;
    static unreadStoryCountPanel_text_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static editWorldButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "edit_world_button" | "activate_world_button">;
    static editWorldButtonPanel_editWorldButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static editWorldButtonPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static editWorldButtonPanel_activateWorldButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSlotButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "world_slot_top" | "world_slot_bottom">;
    static worldSlotButtonContent_worldSlotTop<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "edit_world_button_panel" | "add_world_image_panel" | "world_thumbnail_image_panel" | "foreground" | "check_image">;
    static worldSlotButtonContent_worldSlotTop_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSlotButtonContent_worldSlotTop_addWorldImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "plus_image">;
    static worldSlotButtonContent_worldSlotTop_addWorldImagePanel_plusImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSlotButtonContent_worldSlotTop_worldThumbnailImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "world_thumbnail">;
    static worldSlotButtonContent_worldSlotTop_worldThumbnailImagePanel_worldThumbnail<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSlotButtonContent_worldSlotTop_editWorldButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSlotButtonContent_worldSlotTop_foreground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSlotButtonContent_worldSlotTop_checkImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSlotButtonContent_worldSlotBottom<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "divider_line_black" | "divider_line_white" | "add_world_text_panel" | "world_info_panel">;
    static worldSlotButtonContent_worldSlotBottom_dividerLineBlack<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSlotButtonContent_worldSlotBottom_dividerLineWhite<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSlotButtonContent_worldSlotBottom_addWorldTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background_grey" | "background_green" | "add_world_text">;
    static worldSlotButtonContent_worldSlotBottom_addWorldTextPanel_backgroundGrey<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSlotButtonContent_worldSlotBottom_addWorldTextPanel_backgroundGreen<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSlotButtonContent_worldSlotBottom_addWorldTextPanel_addWorldText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSlotButtonContent_worldSlotBottom_worldInfoPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "background_green" | "world_info_stack_panel">;
    static worldSlotButtonContent_worldSlotBottom_worldInfoPanel_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSlotButtonContent_worldSlotBottom_worldInfoPanel_backgroundGreen<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSlotButtonContent_worldSlotBottom_worldInfoPanel_worldInfoStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldInfoStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "bottom_padding" | "world_name_panel" | "world_type_panel">;
    static worldInfoStackPanel_worldNamePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "world_name">;
    static worldInfoStackPanel_worldNamePanel_worldName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldInfoStackPanel_worldTypePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "world_type">;
    static worldInfoStackPanel_worldTypePanel_worldType<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldInfoStackPanel_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "button_panel" | "padding_1" | "padding_0" | "padding_2" | "padding_3" | "text_panel_0" | "worlds_panel" | "text_panel_1">;
    static mainStackPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainStackPanel_buttonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "play_button" | "left_padding" | "right_padding" | "feed_panel_with_unread_count" | "edit_realm_button">;
    static mainStackPanel_buttonPanel_playButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainStackPanel_buttonPanel_leftPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainStackPanel_buttonPanel_editRealmButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainStackPanel_buttonPanel_rightPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainStackPanel_buttonPanel_feedPanelWithUnreadCount<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "feed_panel" | "unread_story_count">;
    static mainStackPanel_buttonPanel_feedPanelWithUnreadCount_feedPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_feed_button">;
    static mainStackPanel_buttonPanel_feedPanelWithUnreadCount_feedPanel_realmsFeedButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainStackPanel_buttonPanel_feedPanelWithUnreadCount_unreadStoryCount<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainStackPanel_textPanel0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static mainStackPanel_textPanel0_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainStackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainStackPanel_worldsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "world_slot_1" | "world_slot_2" | "world_slot_3">;
    static mainStackPanel_worldsPanel_worldSlot1<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainStackPanel_worldsPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainStackPanel_worldsPanel_worldSlot2<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainStackPanel_worldsPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainStackPanel_worldsPanel_worldSlot3<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainStackPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainStackPanel_textPanel1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static mainStackPanel_textPanel1_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSlotsScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSlotsScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background">;
    static realmsSlotsScreenContent_background<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSlotsScreenContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_scroll_panel">;
    static realmsSlotsScreenContentPanel_mainScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class RealmsStoriesTransition extends Class {
    static realmsStoriesTransitionScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Redstone extends Class {
    static itemDropperLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static dispenserLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static crafterLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropperLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static hopperLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static redstoneInputGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static redstonePanelTopHalf<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "redstone_input_grid">;
    static redstonePanelTopHalf_redstoneInputGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "root_panel" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory">;
    static panel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_cursor" | "common_panel" | "redstone_screen_inventory" | "red_icon" | "$screen_label">;
    static panel_rootPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_rootPanel_redstoneScreenInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hotbar_grid" | "red_hold_icon" | "red_panel" | "red_bottom_half">;
    static panel_rootPanel_redstoneScreenInventory_redPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_rootPanel_redstoneScreenInventory_redBottomHalf<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_rootPanel_redstoneScreenInventory_hotbarGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_rootPanel_redstoneScreenInventory_redHoldIcon<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_rootPanel_redIcon<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_rootPanel_gamepadCursor<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_rootPanel_$screenLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static crafterInputGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static cellImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static crafterHighlightSlot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static crafterContainerSlotButtonPrototype<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static crafterHighlightSlotPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "highlight" | "white_border">;
    static crafterHighlightSlotPanel_highlight<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "hover_text">;
    static crafterHighlightSlotPanel_highlight_hoverText<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static crafterHighlightSlotPanel_whiteBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static crafterEnabledSlotTemplate<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static crafterDisabledSlot<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static crafterDisabledSlot_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static crafterDisabledSlot_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static crafterDisabledSlot_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static outputSlotHoverInfo<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "hover" | "output_slot" | "output_slot_border" | "output_count">;
    static outputSlotHoverInfo_hover<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static outputSlotHoverInfo_outputSlot<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static outputSlotHoverInfo_outputSlotBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static outputSlotHoverInfo_outputCount<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "root_panel" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory">;
    static panelCrafter_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_cursor" | "common_panel" | "disabled_slot_0_button" | "disabled_slot_1_button" | "disabled_slot_2_button" | "disabled_slot_3_button" | "disabled_slot_4_button" | "disabled_slot_5_button" | "disabled_slot_6_button" | "disabled_slot_7_button" | "disabled_slot_8_button" | "redstone_screen_inventory" | "red_icon" | "$screen_label">;
    static panelCrafter_rootPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_disabledSlot0Button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_disabledSlot1Button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_disabledSlot2Button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_disabledSlot3Button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_disabledSlot4Button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_disabledSlot5Button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_disabledSlot6Button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_disabledSlot7Button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_disabledSlot8Button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_redstoneScreenInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hotbar_grid" | "crafting_grid" | "red_hold_icon" | "redstone_wire_line" | "crafter_output" | "red_bottom_half">;
    static panelCrafter_rootPanel_redstoneScreenInventory_craftingGrid<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "crafter_input_grid">;
    static panelCrafter_rootPanel_redstoneScreenInventory_craftingGrid_crafterInputGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_redstoneScreenInventory_redBottomHalf<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_redstoneScreenInventory_hotbarGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_redstoneScreenInventory_redHoldIcon<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_redstoneScreenInventory_redstoneWireLine<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_redstoneScreenInventory_crafterOutput<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_redIcon<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_gamepadCursor<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_rootPanel_$screenLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelCrafter_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static hopperScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static dispenserScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static crafterScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropperScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class ResourcePacks extends Class {
    static blackImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static grayImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static yellowImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static whiteImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "border">;
    static whiteImage_border<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourcePacksToggleButtonControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tab_button_text" | "icon_border" | "cycling_icon">;
    static resourcePacksToggleButtonControl_iconBorder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourcePacksToggleButtonControl_cyclingIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourcePacksToggleButtonControl_tabButtonText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourcePacksSectionToggleBase<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedIconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static availableIconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsIconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedIconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static invalidIconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static minusImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static plusImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static minusText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static plusText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorImageHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "default" | "hover">;
    static errorImagePanel_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorImagePanel_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningImageHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "default" | "hover">;
    static warningPanel_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningPanel_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static noErrorImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static noErrorImageHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static noErrorPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "default" | "hover">;
    static noErrorPanel_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static noErrorPanel_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static upArrowImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static downArrowImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static upArrowImageHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static downArrowImageHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static upArrowPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "default" | "hover">;
    static upArrowPanel_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static upArrowPanel_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static upArrowWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "down_arrow" | "divider_right">;
    static upArrowWrapper_downArrow<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static upArrowWrapper_dividerRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static downArrowPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "default" | "hover">;
    static downArrowPanel_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static downArrowPanel_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static downArrowWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "down_arrow" | "divider_right">;
    static downArrowWrapper_downArrow<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static downArrowWrapper_dividerRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningImageWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_bars" | "warning_image" | "error_image" | "no_error_panel">;
    static warningImageWrapper_errorImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningImageWrapper_warningImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningImageWrapper_noErrorPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningImageWrapper_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tooltipImageWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "warning_image" | "error_image">;
    static tooltipImageWrapper_errorImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tooltipImageWrapper_warningImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionsImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionsImageHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionsImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "default" | "hover">;
    static optionsImagePanel_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionsImagePanel_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "border" | "image">;
    static optionsImagePanel_hover_image<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionsImagePanel_hover_border<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionsWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "options" | "divider_right">;
    static optionsWrapper_options<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionsWrapper_dividerRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonPackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static availableTextPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "name_panel" | "full_panel">;
    static availableTextPanel_namePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "available_pack_name_label" | "available_file_size_label">;
    static availableTextPanel_namePanel_availablePackNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static availableTextPanel_namePanel_availableFileSizeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static availableTextPanel_fullPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "description_panel">;
    static availableTextPanel_fullPanel_descriptionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "available_pack_description_label">;
    static availableTextPanel_fullPanel_descriptionPanel_availablePackDescriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsTextPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "description_panel" | "name_panel">;
    static realmsTextPanel_namePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "realms_pack_name_label" | "realms_file_size_label">;
    static realmsTextPanel_namePanel_realmsPackNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsTextPanel_namePanel_realmsFileSizeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsTextPanel_descriptionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_pack_description_label">;
    static realmsTextPanel_descriptionPanel_realmsPackDescriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedTextPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "description_panel" | "name_panel">;
    static unownedTextPanel_namePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "unowned_pack_name_label" | "unowned_file_size_label">;
    static unownedTextPanel_namePanel_unownedPackNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedTextPanel_namePanel_unownedFileSizeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedTextPanel_descriptionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "unowned_pack_description_label">;
    static unownedTextPanel_descriptionPanel_unownedPackDescriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedTextPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "name_panel" | "full_panel">;
    static selectedTextPanel_namePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "selected_pack_name_label" | "selected_file_size_label" | "active_dot_panel">;
    static selectedTextPanel_namePanel_selectedPackNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedTextPanel_namePanel_selectedFileSizeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedTextPanel_namePanel_activeDotPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "active_dot">;
    static selectedTextPanel_namePanel_activeDotPanel_activeDot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedTextPanel_fullPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "description_panel" | "warning_line" | "error_line" | "expired_line">;
    static selectedTextPanel_fullPanel_warningLine<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "warning_text" | "warning_number">;
    static selectedTextPanel_fullPanel_warningLine_warningText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedTextPanel_fullPanel_warningLine_warningNumber<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedTextPanel_fullPanel_errorLine<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "error_text" | "error_number">;
    static selectedTextPanel_fullPanel_errorLine_errorText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedTextPanel_fullPanel_errorLine_errorNumber<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedTextPanel_fullPanel_expiredLine<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "expired_text">;
    static selectedTextPanel_fullPanel_expiredLine_expiredText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedTextPanel_fullPanel_descriptionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "selected_pack_description_label">;
    static selectedTextPanel_fullPanel_descriptionPanel_selectedPackDescriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static invalidTextPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "full_panel">;
    static invalidTextPanel_fullPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "error_line">;
    static invalidTextPanel_fullPanel_errorLine<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "error_text" | "error_number">;
    static invalidTextPanel_fullPanel_errorLine_errorText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static invalidTextPanel_fullPanel_errorLine_errorNumber<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePackButtonLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "available_icon_image" | "text_panel_small" | "text_panel_full" | "read_more_button_panel" | "read_less_button_panel">;
    static availablePackButtonLayout_availableIconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePackButtonLayout_textPanelSmall<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePackButtonLayout_textPanelFull<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePackButtonLayout_readMoreButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePackButtonLayout_readLessButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePackButtonLayoutHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "available_icon_image" | "text_panel_small" | "read_more_button_panel" | "read_less_button_panel" | "hover_small" | "text_panel_full_hover">;
    static availablePackButtonLayoutHover_hoverSmall<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePackButtonLayoutHover_availableIconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePackButtonLayoutHover_textPanelSmall<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePackButtonLayoutHover_textPanelFullHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text_panel_full">;
    static availablePackButtonLayoutHover_textPanelFullHover_textPanelFull<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePackButtonLayoutHover_readMoreButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePackButtonLayoutHover_readLessButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static availablePackButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePackButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePackButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPackButtonLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_icon_image" | "text_panel_small" | "text_panel_full" | "read_more_button_panel" | "read_less_button_panel">;
    static realmsPackButtonLayout_realmsIconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPackButtonLayout_textPanelSmall<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPackButtonLayout_textPanelFull<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPackButtonLayout_readMoreButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPackButtonLayout_readLessButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPackButtonLayoutHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_icon_image" | "text_panel_small" | "read_more_button_panel" | "read_less_button_panel" | "hover_small" | "text_panel_full_hover">;
    static realmsPackButtonLayoutHover_hoverSmall<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPackButtonLayoutHover_realmsIconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPackButtonLayoutHover_textPanelSmall<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPackButtonLayoutHover_textPanelFullHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text_panel_full">;
    static realmsPackButtonLayoutHover_textPanelFullHover_textPanelFull<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPackButtonLayoutHover_readMoreButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPackButtonLayoutHover_readLessButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static realmsPackButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPackButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPackButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPackButtonLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "unowned_icon_image" | "text_panel_small" | "text_panel_full" | "read_more_button_panel" | "read_less_button_panel">;
    static unownedPackButtonLayout_unownedIconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPackButtonLayout_textPanelSmall<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPackButtonLayout_textPanelFull<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPackButtonLayout_readMoreButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPackButtonLayout_readLessButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPackButtonLayoutHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "unowned_icon_image" | "text_panel_small" | "read_more_button_panel" | "read_less_button_panel" | "hover_small" | "text_panel_full_hover">;
    static unownedPackButtonLayoutHover_hoverSmall<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPackButtonLayoutHover_unownedIconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPackButtonLayoutHover_textPanelSmall<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPackButtonLayoutHover_textPanelFullHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text_panel_full">;
    static unownedPackButtonLayoutHover_textPanelFullHover_textPanelFull<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPackButtonLayoutHover_readMoreButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPackButtonLayoutHover_readLessButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static unownedPackButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPackButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPackButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static invalidPackButtonLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text_panel" | "invalid_icon_image">;
    static invalidPackButtonLayout_invalidIconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static invalidPackButtonLayout_textPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static invalidPackButtonLayoutHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "invalid_icon_image" | "hover_small" | "text_panel_full_hover">;
    static invalidPackButtonLayoutHover_hoverSmall<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static invalidPackButtonLayoutHover_invalidIconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static invalidPackButtonLayoutHover_textPanelFullHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text_panel">;
    static invalidPackButtonLayoutHover_textPanelFullHover_textPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static invalidPackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static invalidPackButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static invalidPackButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static invalidPackButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emptyResourcePackButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourcePackButtonPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputButtonPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "background" | "border_image">;
    static inputButtonPanel_borderImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "button_panel">;
    static inputButtonPanel_borderImage_buttonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "padding_2" | "padding_3" | "padding_4" | "$resource_pack_button_0" | "$resource_pack_button_1" | "$resource_pack_button_2" | "$resource_pack_button_3" | "$resource_pack_button_4" | "$resource_pack_button_5">;
    static inputButtonPanel_borderImage_buttonPanel_$resourcePackButton0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputButtonPanel_borderImage_buttonPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputButtonPanel_borderImage_buttonPanel_$resourcePackButton1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputButtonPanel_borderImage_buttonPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputButtonPanel_borderImage_buttonPanel_$resourcePackButton2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputButtonPanel_borderImage_buttonPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputButtonPanel_borderImage_buttonPanel_$resourcePackButton3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputButtonPanel_borderImage_buttonPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputButtonPanel_borderImage_buttonPanel_$resourcePackButton4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputButtonPanel_borderImage_buttonPanel_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputButtonPanel_borderImage_buttonPanel_$resourcePackButton5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputButtonPanel_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackButtonLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "selected_icon_image" | "text_panel_small" | "text_panel_full" | "read_more_button_panel" | "read_less_button_panel">;
    static selectedPackButtonLayout_selectedIconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackButtonLayout_textPanelSmall<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackButtonLayout_textPanelFull<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackButtonLayout_readMoreButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackButtonLayout_readLessButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackButtonLayoutHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "selected_icon_image" | "text_panel_small" | "read_more_button_panel" | "read_less_button_panel" | "hover_small" | "text_panel_full_hover">;
    static selectedPackButtonLayoutHover_hoverSmall<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackButtonLayoutHover_selectedIconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackButtonLayoutHover_textPanelSmall<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackButtonLayoutHover_textPanelFullHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text_panel_full">;
    static selectedPackButtonLayoutHover_textPanelFullHover_textPanelFull<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackButtonLayoutHover_readMoreButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackButtonLayoutHover_readLessButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static selectedPackButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackMovementButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackTransparentMovementButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackMinusButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackPlusButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackStoreButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackStoreButtonFill<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackUpButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackDownButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackWarningButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackOptionsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static whiteLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static grayLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static suggestedContentOffersTitleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePacksTitleContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPacksTitleContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPacksTitleContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPacksTitleContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "count" | "icon_panel" | "pad_1" | "pad_0" | "fill_pad" | "plus_panel" | "selected_packs_title_label" | "minus_panel">;
    static selectedPacksTitleContent_selectedPacksTitleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPacksTitleContent_fillPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPacksTitleContent_iconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "block_icon">;
    static selectedPacksTitleContent_iconPanel_blockIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPacksTitleContent_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPacksTitleContent_count<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPacksTitleContent_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPacksTitleContent_plusPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "plus">;
    static selectedPacksTitleContent_plusPanel_plus<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPacksTitleContent_minusPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "minus">;
    static selectedPacksTitleContent_minusPanel_minus<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePacksTitleButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPacksTitleButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPacksTitleButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPacksTitleButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static nameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static sizeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static packLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackDescriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePackDescriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPackDescriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPackDescriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedFileSizeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePackNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static availableFileSizeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPackNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsFileSizeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPackNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedFileSizeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static invalidPackNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static invalidPackDescriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "selected_packs">;
    static availablePanel_selectedPacks<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxVisuals<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerControl<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, "header_description_stack_panel">;
    static headerControl_headerDescriptionStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "checkbox_visuals" | "buffer_panel">;
    static headerControl_headerDescriptionStackPanel_checkboxVisuals<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerControl_headerDescriptionStackPanel_bufferPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static headerControl_headerDescriptionStackPanel_bufferPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonHeaderControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "header_description_stack_panel">;
    static addonHeaderControl_headerDescriptionStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "padding_2" | "description_center_panel" | "link_center_panel">;
    static addonHeaderControl_headerDescriptionStackPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonHeaderControl_headerDescriptionStackPanel_descriptionCenterPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static addonHeaderControl_headerDescriptionStackPanel_descriptionCenterPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonHeaderControl_headerDescriptionStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonHeaderControl_headerDescriptionStackPanel_linkCenterPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "addon_link_button">;
    static addonHeaderControl_headerDescriptionStackPanel_linkCenterPanel_addonLinkButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonHeaderControl_headerDescriptionStackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelBg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gray" | "black_background">;
    static panelBg_blackBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelBg_gray<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonPanelBg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "yellow" | "black_background">;
    static addonPanelBg_blackBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonPanelBg_yellow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "black_background">;
    static errorPanel_blackBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "gray">;
    static errorPanel_blackBackground_gray<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "panel">;
    static errorPanel_blackBackground_gray_panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "error_label">;
    static errorPanel_blackBackground_gray_panel_errorLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "world_template_option_lock_panel" | "top_panel" | "realms_packs_title_button" | "unowned_packs_title_button" | "offset_0" | "addon_stacking_warning_panel" | "offset_1" | "selected_packs_title_panel" | "selected_pack_section" | "offset_2" | "available_packs_title_panel" | "available_packs_section" | "offset_3" | "realms_packs_section" | "offset_4" | "unowned_packs_section">;
    static selectedStackPanel_worldTemplateOptionLockPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_info_label">;
    static selectedStackPanel_worldTemplateOptionLockPanel_optionInfoLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_topPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "header_control" | "panel_bg">;
    static selectedStackPanel_topPanel_panelBg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_topPanel_headerControl<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_offset0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_addonStackingWarningPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "header_control" | "addon_panel_bg">;
    static selectedStackPanel_addonStackingWarningPanel_addonPanelBg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_addonStackingWarningPanel_headerControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_offset1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_selectedPacksTitlePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "tooltip" | "selected_packs_title_button">;
    static selectedStackPanel_selectedPacksTitlePanel_selectedPacksTitleButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_selectedPacksTitlePanel_tooltip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button">;
    static selectedStackPanel_selectedPacksTitlePanel_tooltip_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_selectedPackSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offset" | "filler_panel" | "selected_pack_grid" | "default_item">;
    static selectedStackPanel_selectedPackSection_offset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_selectedPackSection_selectedPackGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_selectedPackSection_defaultItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon_image" | "description_panel" | "name_panel">;
    static selectedStackPanel_selectedPackSection_defaultItem_iconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_selectedPackSection_defaultItem_namePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "white_label">;
    static selectedStackPanel_selectedPackSection_defaultItem_namePanel_whiteLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_selectedPackSection_defaultItem_descriptionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "white_label">;
    static selectedStackPanel_selectedPackSection_defaultItem_descriptionPanel_whiteLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_selectedPackSection_fillerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "description_label">;
    static selectedStackPanel_selectedPackSection_fillerPanel_descriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_offset2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_availablePacksTitlePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "tooltip" | "available_packs_title_button">;
    static selectedStackPanel_availablePacksTitlePanel_availablePacksTitleButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_availablePacksTitlePanel_tooltip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button">;
    static selectedStackPanel_availablePacksTitlePanel_tooltip_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_availablePacksSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offset" | "empty_panel" | "available_pack_grid" | "invalid_pack_grid">;
    static selectedStackPanel_availablePacksSection_offset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_availablePacksSection_emptyPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "no_packs_panel" | "to_store_button">;
    static selectedStackPanel_availablePacksSection_emptyPanel_noPacksPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "no_packs_text">;
    static selectedStackPanel_availablePacksSection_emptyPanel_noPacksPanel_noPacksText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_availablePacksSection_emptyPanel_toStoreButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_availablePacksSection_availablePackGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_availablePacksSection_invalidPackGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_offset3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_realmsPacksTitleButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_realmsPacksSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offset" | "offset_4" | "realms_pack_grid">;
    static selectedStackPanel_realmsPacksSection_offset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_realmsPacksSection_realmsPackGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_realmsPacksSection_offset4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_offset4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_unownedPacksTitleButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_unownedPacksSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offset" | "offset_4" | "to_store_button" | "unowned_pack_grid">;
    static selectedStackPanel_unownedPacksSection_offset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_unownedPacksSection_unownedPackGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_unownedPacksSection_toStoreButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedStackPanel_unownedPacksSection_offset4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static availableStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "available_packs_title_button" | "available_pack_grid">;
    static availableStackPanel_availablePacksTitleButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static availableStackPanel_availablePackGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packBackground<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "white_image" | "gray_image">;
    static packBackground_whiteImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packBackground_grayImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider" | "pad_1" | "center_panel" | "pad_0" | "selected_pack_button">;
    static selectedPackPanel_selectedPackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackPanel_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackPanel_centerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "visibility_panel">;
    static selectedPackPanel_centerPanel_visibilityPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "selected_pack_direction_buttons">;
    static selectedPackPanel_centerPanel_visibilityPanel_selectedPackDirectionButtons<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackPanel_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackPanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider" | "pad_1" | "center_panel" | "pad_0" | "available_pack_button">;
    static availablePackPanel_availablePackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePackPanel_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePackPanel_centerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "available_pack_direction_buttons">;
    static availablePackPanel_centerPanel_availablePackDirectionButtons<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePackPanel_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePackPanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider" | "pad_1" | "center_panel" | "pad_0" | "realms_pack_button">;
    static realmsPackPanel_realmsPackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPackPanel_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPackPanel_centerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_pack_direction_buttons">;
    static realmsPackPanel_centerPanel_realmsPackDirectionButtons<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPackPanel_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPackPanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider" | "pad_1" | "center_panel" | "pad_0" | "unowned_pack_button">;
    static unownedPackPanel_unownedPackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPackPanel_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPackPanel_centerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_pack_direction_buttons">;
    static unownedPackPanel_centerPanel_realmsPackDirectionButtons<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPackPanel_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPackPanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static invalidPackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider" | "pad_1" | "pad_0" | "invalid_pack_button">;
    static invalidPackPanel_invalidPackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static invalidPackPanel_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static invalidPackPanel_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static invalidPackPanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedPackGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static availablePackGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPackGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static unownedPackGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static invalidPackGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class SafeZone extends Class {
    static cornerImageCommon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cornerBl<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cornerBr<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cornerTr<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cornerTl<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static confirmButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static instructionsText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inner_label">;
    static instructionsText_innerLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static labelButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static labelButtonHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hover">;
    static labelButtonHover_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "button_hover_text">;
    static labelButtonHover_hover_buttonHoverText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "safe_zone_slider_all" | "safe_zone_slider_x" | "safe_zone_slider_y" | "screen_position_slider_x" | "screen_position_slider_y" | "instruction_text_button">;
    static contentPanel_safeZoneSliderAll<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPanel_safeZoneSliderX<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPanel_safeZoneSliderY<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPanel_screenPositionSliderX<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPanel_screenPositionSliderY<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPanel_instructionTextButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static contentPanel_instructionTextButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPanel_instructionTextButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPanel_instructionTextButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static safeZoneScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, "main_content_panel" | "safe_zone_bounds_markers">;
    static safeZoneScreen_safeZoneBoundsMarkers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top_left_marker" | "top_right_marker" | "bottom_left_marker" | "bottom_right_marker">;
    static safeZoneScreen_safeZoneBoundsMarkers_topLeftMarker<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static safeZoneScreen_safeZoneBoundsMarkers_topRightMarker<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static safeZoneScreen_safeZoneBoundsMarkers_bottomLeftMarker<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static safeZoneScreen_safeZoneBoundsMarkers_bottomRightMarker<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static safeZoneScreen_mainContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_text" | "common_panel" | "scrolling_panel" | "confirm_button">;
    static safeZoneScreen_mainContentPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static safeZoneScreen_mainContentPanel_titleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static safeZoneScreen_mainContentPanel_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static safeZoneScreen_mainContentPanel_confirmButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Scoreboard extends Class {
    static scoreboardSidebarScore<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static scoreboardSidebarPlayer<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static scoreboardSidebar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main" | "displayed_objective_background">;
    static scoreboardSidebar_main<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "lists" | "displayed_objective">;
    static scoreboardSidebar_main_displayedObjective<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static scoreboardSidebar_main_lists<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "horizontal_padding" | "players" | "scores">;
    static scoreboardSidebar_main_lists_players<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scoreboardSidebar_main_lists_horizontalPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scoreboardSidebar_main_lists_scores<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scoreboardSidebar_displayedObjectiveBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static scoreboardPlayerList<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "vertical_padding_1" | "vertical_padding_2" | "vertical_padding_3" | "vertical_padding_0" | "social_buttons_panel" | "players_label" | "vertical_padding_4" | "vertical_padding_5" | "invite_players_button_panel" | "vertical_padding_6" | "disconnected_from_multiplayer_label_panel" | "vertical_padding_7" | "permissions_button" | "scored_players_grid_panel" | "unscored_players_grid_panel">;
    static scoreboardPlayerList_verticalPadding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scoreboardPlayerList_socialButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scoreboardPlayerList_verticalPadding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scoreboardPlayerList_permissionsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static scoreboardPlayerList_verticalPadding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scoreboardPlayerList_playersLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static scoreboardPlayerList_verticalPadding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scoreboardPlayerList_scoredPlayersGridPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scoreboardPlayerList_verticalPadding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scoreboardPlayerList_unscoredPlayersGridPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scoreboardPlayerList_verticalPadding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scoreboardPlayerList_invitePlayersButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scoreboardPlayerList_verticalPadding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scoreboardPlayerList_disconnectedFromMultiplayerLabelPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scoreboardPlayerList_verticalPadding7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static listObjectiveLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerRankPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "player_rank_bg">;
    static playerRankPanel_playerRankBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "player_rank">;
    static playerRankPanel_playerRankBg_playerRank<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "permission_icon" | "player_icon">;
    static playerIconPanel_playerIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "player_panel_black_border">;
    static playerIconPanel_playerIcon_playerPanelBlackBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerIconPanel_permissionIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerScore<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerDetails<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "name_panel" | "score_panel">;
    static playerDetails_namePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "name">;
    static playerDetails_namePanel_name<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerDetails_scorePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "score">;
    static playerDetails_scorePanel_score<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "details" | "icon">;
    static playerContent_icon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerContent_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerContent_details<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static basePlayerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "player_button" | "rank_base">;
    static playerPanel_rankBase<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "player_rank">;
    static playerPanel_rankBase_playerRank<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerPanel_playerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static playersGridList<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playersUnscoredGridList<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playersScoredGridList<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Screenshot extends Class {
    static screenshotFlashImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "transparent_background" | "screenshot_flash">;
    static screenshotScreenContent_transparentBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotScreenContent_screenshotFlash<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class SelectWorld extends Class {
    static popupDialog_addOnCommon<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_addOnCommonNoButtons<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "close_button" | "popup_dialog_bg" | "popup_dialog_message" | "add_on_popup_content_panel">;
    static popupDialog_addOnCommonNoButtons_popupDialogBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_addOnCommonNoButtons_popupDialogMessage<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_addOnCommonNoButtons_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_addOnCommonNoButtons_addOnPopupContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_addOnCommonTwoButtons<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "close_button" | "popup_dialog_bg" | "popup_dialog_message" | "add_on_popup_content_panel" | "button_copy" | "button_continue">;
    static popupDialog_addOnCommonTwoButtons_popupDialogBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_addOnCommonTwoButtons_popupDialogMessage<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_addOnCommonTwoButtons_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_addOnCommonTwoButtons_addOnPopupContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_addOnCommonTwoButtons_buttonCopy<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_addOnCommonTwoButtons_buttonContinue<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static addOnButtonCopy<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static addOnButtonContinue<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static addOnPopupContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "popup_content">;
    static addOnPopupContentPanel_popupContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_activateAddOn<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_activateAddOnSelectWorld<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_copyLocalWorld<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_copyRealmsWorld<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static copyLocalWorldPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_middle" | "text_box" | "padding_top" | "text_box2">;
    static copyLocalWorldPanel_paddingTop<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static copyLocalWorldPanel_textBox<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static copyLocalWorldPanel_paddingMiddle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static copyLocalWorldPanel_textBox2<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static copyRealmsWorldPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_middle" | "text_box" | "padding_top" | "text_box2">;
    static copyRealmsWorldPanel_paddingTop<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static copyRealmsWorldPanel_textBox<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static copyRealmsWorldPanel_paddingMiddle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static copyRealmsWorldPanel_textBox2<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static newOrExistingWorldPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_middle" | "padding_right" | "padding_left" | "world_icon_existing" | "world_icon_new">;
    static newOrExistingWorldPanel_paddingLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newOrExistingWorldPanel_worldIconExisting<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newOrExistingWorldPanel_paddingMiddle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newOrExistingWorldPanel_worldIconNew<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newOrExistingWorldPanel_paddingRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldIconWithButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "button" | "world_icon" | "padding_bottom" | "padding_top">;
    static worldIconWithButton_paddingTop<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldIconWithButton_worldIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldIconWithButton_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldIconWithButton_paddingBottom<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldIconNew<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "plus_button">;
    static worldIconNew_plusButton<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldIconExisting<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectWorldPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectWorldList<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_middle" | "realms_world_label" | "realms_world_list" | "local_world_label" | "local_world_list" | "padding_end">;
    static selectWorldList_realmsWorldLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectWorldList_realmsWorldList<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectWorldList_paddingMiddle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectWorldList_localWorldLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectWorldList_localWorldList<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectWorldList_paddingEnd<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static localWorldItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsWorldItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectWorldScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_factory">;
    static selectWorldScreenContent_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectWorldPopupScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class ServerForm extends Class {
    static thirdPartyServerScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "server_form_factory">;
    static mainScreenContent_serverFormFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static longForm<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static longFormPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static longFormPanel_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static longFormScrollingContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "label_offset_panel" | "wrapping_panel">;
    static longFormScrollingContent_labelOffsetPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_label">;
    static longFormScrollingContent_labelOffsetPanel_mainLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static longFormScrollingContent_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static longFormScrollingContent_wrappingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "long_form_dynamic_buttons_panel">;
    static longFormScrollingContent_wrappingPanel_longFormDynamicButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static longFormDynamicButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "panel_name" | "form_button">;
    static dynamicButton_panelName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress" | "image">;
    static dynamicButton_panelName_image<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicButton_panelName_progress<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicButton_formButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static customForm<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static customFormPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generatedContents<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static customFormScrollingContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "generated_form" | "submit_button">;
    static customFormScrollingContent_generatedForm<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static customFormScrollingContent_submitButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static customLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static customHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static customToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static customSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static customStepSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static customDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dropdown">;
    static customDropdown_dropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static customDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static customDropdownRadio<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static customInput<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Settings extends Class {
    static settingsScreenBase<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenWorldCreate<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenTemplateCreate<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenWorldEdit<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenControlsAndSettings<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenWorldControlsAndSettings<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenRealmControlsAndSettings<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenRealmSettings<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenWorldSlotEdit<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenRealmManage<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenRealmInviteLinkSettings<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer_01" | "how_to_play_button" | "spacer_0" | "accessibility_button" | "spacer_1" | "world_selector_pane" | "realm_selector_pane" | "controls_and_settings_selector_pane" | "spacer_24" | "addons_selector_panel" | "realms_invite_link_settings_pane">;
    static selectorStackPanel_spacer0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_accessibilityButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_spacer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_howToPlayButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_spacer01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_worldSelectorPane<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_realmSelectorPane<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "controller_button" | "spacer_02" | "spacer_01" | "spacer_03" | "language_button" | "general_button" | "spacer_1" | "spacer_1_no_spatial" | "selector_group_label_1" | "keyboard_and_mouse_button" | "switch_controller_button" | "touch_button" | "spacer_04" | "spacer_04_no_spatial" | "selector_group_label_2" | "party_button" | "spacer_05" | "spacer_05_no_spatial" | "selector_group_label_3" | "spacer_06" | "video_button" | "spacer_07" | "sound_button" | "spacer_08" | "account_button" | "spacer_09" | "view_subscriptions_button" | "spacer_10" | "global_texture_pack_button" | "spacer_11" | "storage_management_button" | "spacer_12" | "edu_cloud_storage_button" | "spacer_13" | "spacer_14" | "creator_button" | "spacer_15" | "preview_button" | "spacer_4" | "spacer_4_no_spatial" | "selector_group_label_4" | "debug_button" | "spacer_16" | "discovery_debug_button" | "spacer_17" | "ui_debug_button" | "spacer_18" | "edu_debug_button" | "spacer_19" | "marketplace_debug_button" | "spacer_20" | "gatherings_debug_button" | "spacer_21" | "flighting_debug_button" | "spacer_22" | "realms_debug_button" | "spacer_23" | "automation_button">;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer1NoSpatial<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_selectorGroupLabel1<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_keyboardAndMouseButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_controllerButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer02<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_switchControllerButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer03<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_touchButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer04<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer04NoSpatial<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_selectorGroupLabel2<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_partyButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer05<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer05NoSpatial<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_selectorGroupLabel3<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_generalButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer06<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_videoButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer07<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_soundButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer08<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_accountButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer09<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_viewSubscriptionsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer10<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_globalTexturePackButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer11<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_storageManagementButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer12<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_eduCloudStorageButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer13<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_languageButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer14<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_creatorButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer15<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_previewButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer4NoSpatial<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_selectorGroupLabel4<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_debugButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer16<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_discoveryDebugButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer17<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_uiDebugButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer18<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_eduDebugButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer19<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_marketplaceDebugButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer20<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_gatheringsDebugButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer21<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_flightingDebugButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer22<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_realmsDebugButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_spacer23<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_controlsAndSettingsSelectorPane_automationButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_spacer24<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_addonsSelectorPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorStackPanel_realmsInviteLinkSettingsPane<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "section_content_panels" | "realm_invite_link_settings_content_panels" | "world_sections" | "packs_sections" | "general_and_controls_sections">;
    static sectionContentPanels_realmInviteLinkSettingsContentPanels<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_worldSections<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "game_section" | "classroom_section_panel" | "server_section" | "multiplayer_section" | "edu_cloud_section" | "debug_section">;
    static sectionContentPanels_worldSections_gameSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_worldSections_classroomSectionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "classroom_section">;
    static sectionContentPanels_worldSections_classroomSectionPanel_classroomSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_worldSections_serverSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_worldSections_multiplayerSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_worldSections_eduCloudSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_worldSections_debugSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_packsSections<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "level_texture_pack_section" | "addon_section">;
    static sectionContentPanels_packsSections_levelTexturePackSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_packsSections_addonSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_sectionContentPanels<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "debug_section" | "accessibility_section" | "keyboard_and_mouse_section" | "controller_section" | "touch_section" | "party_section" | "general_tab_section" | "account_section" | "global_texture_pack_section" | "storage_management_header" | "storage_management_section" | "edu_cloud_storage_section" | "creator_section" | "video_section" | "video_section_ore_ui" | "view_subscriptions_prerelease_section" | "view_subscriptions_section" | "sound_section" | "sound_section_ore_ui" | "language_section" | "preview_section" | "ui_debug_section" | "edu_debug_section" | "marketplace_debug_section" | "gatherings_debug_section" | "flighting_debug_section" | "realms_debug_section" | "automation_section" | "discovery_debug_section" | "how_to_play_section">;
    static sectionContentPanels_generalAndControlsSections_accessibilitySection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_keyboardAndMouseSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_controllerSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_touchSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_partySection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_generalTabSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_accountSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_globalTexturePackSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_storageManagementHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_storageManagementSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_eduCloudStorageSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_creatorSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_videoSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_videoSectionOreUi<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_viewSubscriptionsPrereleaseSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_viewSubscriptionsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_soundSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_soundSectionOreUi<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_languageSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_previewSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_debugSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_uiDebugSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_eduDebugSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_marketplaceDebugSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_gatheringsDebugSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_flightingDebugSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_realmsDebugSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_automationSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_discoveryDebugSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionContentPanels_generalAndControlsSections_howToPlaySection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionHeaderPanels<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "world_sections" | "general_and_controls_sections">;
    static sectionHeaderPanels_worldSections<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionHeaderPanels_generalAndControlsSections<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionFooterPanels<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "world_sections" | "general_and_controls_sections">;
    static sectionFooterPanels_worldSections<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionFooterPanels_generalAndControlsSections<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "storage_management_footer">;
    static sectionFooterPanels_generalAndControlsSections_storageManagementFooter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class SidebarNavigation extends Class {
    static emptyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emptyFillXPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emptyDefaultPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalPaddingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarDividerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "sidebar_divider">;
    static sidebarDividerPanel_sidebarDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toggle_content">;
    static toggleContent_toggleContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarSectionScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarBgContentPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "sidebar_bg_content">;
    static sidebarBgContentPanel_sidebarBgContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarNavToggleImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarNavToggleImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "sidebar_nav_toggle_image" | "gamepad_helper_icon">;
    static sidebarNavToggleImagePanel_sidebarNavToggleImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarNavToggleImagePanel_gamepadHelperIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperIconStartToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verboseViewToggleContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_padding" | "sidebar_nav_toggle_image">;
    static verboseViewToggleContent_leftPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verboseViewToggleContent_sidebarNavToggleImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarToggleBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarOptionToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static simpleSidebarToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verboseToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verboseSidebarOption<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verboseExpandOption<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verboseDropdownOption<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verboseDropdownExpandedOption<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verboseSidebarExpandSectionBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static verboseSidebarExpandSectionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verboseExpandSectionPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verboseViewToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarOptionFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarOptionFactoryPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "sidebar_option_factory">;
    static sidebarOptionFactoryPanel_sidebarOptionFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verboseButtonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_label">;
    static verboseButtonContent_buttonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static verboseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static verboseNavButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "verbose_nav_button">;
    static verboseNavButtonPanel_verboseNavButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static verboseScreenNavButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static verboseScreenNavOptionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "verbose_nav_button">;
    static verboseScreenNavOptionPanel_verboseNavButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarOptionFactoryScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarScreenNavOptionFactoryPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "button" | "padding" | "fill_panel" | "platform_icon_padding">;
    static sidebarScreenNavOptionFactoryPanel_fillPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarScreenNavOptionFactoryPanel_button<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarScreenNavOptionFactoryPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarScreenNavOptionFactoryPanel_platformIconPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootSectionContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "sidebar_option_factory" | "verbose_sidebar_screen_Nav">;
    static rootSectionContentPanel_sidebarOptionFactory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootSectionContentPanel_verboseSidebarScreenNav<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static edgeBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static verboseViewStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "verbose_view_toggle" | "$sidebar_section_name">;
    static verboseViewStackPanel_verboseViewToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verboseViewStackPanel_$sidebarSectionName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "verbose_view_stack_panel" | "left_edge_bar" | "right_edge_bar">;
    static sidebarSection_leftEdgeBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarSection_verboseViewStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarSection_rightEdgeBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verboseRootSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static simpleRootSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "verbose_view_toggle" | "root_section">;
    static simpleRootSection_verboseViewToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static simpleRootSection_rootSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarSectionFactoryPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "sidebar_section_factory">;
    static sidebarSectionFactoryPanel_sidebarSectionFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarViewContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "view_stack_panel" | "verbose_view_exit">;
    static sidebarViewContentPanel_viewStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "sidebar_view" | "controller_hover_close_panel">;
    static sidebarViewContentPanel_viewStackPanel_sidebarView<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarViewContentPanel_viewStackPanel_controllerHoverClosePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "controller_hover_close_button">;
    static sidebarViewContentPanel_viewStackPanel_controllerHoverClosePanel_controllerHoverCloseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "hover">;
    static sidebarViewContentPanel_viewStackPanel_controllerHoverClosePanel_controllerHoverCloseButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarViewContentPanel_viewStackPanel_controllerHoverClosePanel_controllerHoverCloseButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarViewContentPanel_verboseViewExit<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verboseSidebarViewModal<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarViews<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "sidebar_view_conent">;
    static sidebarViews_sidebarViewConent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "simple_sidebar_view" | "verbose_side_bar_view_modal">;
    static sidebarViews_sidebarViewConent_simpleSidebarView<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarViews_sidebarViewConent_verboseSideBarViewModal<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "verbose_sidebar_view">;
    static sidebarViews_sidebarViewConent_verboseSideBarViewModal_verboseSidebarView<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarEmptyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentView<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content_view_stack">;
    static contentView_contentViewStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "sidebar_view_stack" | "main_view_content">;
    static contentView_contentViewStack_sidebarViewStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider" | "sidebar_empty_panel">;
    static contentView_contentViewStack_sidebarViewStack_sidebarEmptyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "controller_hover_open_panel">;
    static contentView_contentViewStack_sidebarViewStack_sidebarEmptyPanel_controllerHoverOpenPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "controller_hover_open_button">;
    static contentView_contentViewStack_sidebarViewStack_sidebarEmptyPanel_controllerHoverOpenPanel_controllerHoverOpenButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "hover">;
    static contentView_contentViewStack_sidebarViewStack_sidebarEmptyPanel_controllerHoverOpenPanel_controllerHoverOpenButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentView_contentViewStack_sidebarViewStack_sidebarEmptyPanel_controllerHoverOpenPanel_controllerHoverOpenButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentView_contentViewStack_sidebarViewStack_divider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentView_contentViewStack_mainViewContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "screen_content">;
    static contentView_contentViewStack_mainViewContent_screenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarView<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "progress_loading" | "content_view" | "sidebar_content">;
    static sidebarView_sidebarContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarView_contentView<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sidebarView_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformStoreIconSpacing<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Sign extends Class {
    static signBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static hangingSignBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseSignTextMultiline<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static regularSignTextMultiline<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static hangingSignTextMultiline<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static signScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "input_eating_panel" | "invisible_exit_background">;
    static signScreenContent_inputEatingPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "text_edit">;
    static signScreenContent_inputEatingPanel_textEdit<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static signScreenContent_invisibleExitBackground<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static signScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class SimpleInprogress extends Class {
    static titleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title" | "common_panel" | "main_content" | "progress_loading_bars">;
    static mainPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_mainContent<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static simpleInprogressScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static simpleInprogressScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "root_panel">;
    static simpleInprogressScreenContent_rootPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel">;
    static simpleInprogressScreenContent_rootPanel_mainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class SkinPackPurchase extends Class {
    static cyclePackLeftButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cyclePackRightButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinModel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "paper_doll">;
    static skinModel_paperDoll<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinLock<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinFocusBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "equip">;
    static skinFocusBorder_equip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinButtonPanelGamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "skin_button">;
    static skinButtonPanelGamepad_skinButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "pressed" | "hover">;
    static skinButtonPanelGamepad_skinButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinButtonPanelGamepad_skinButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinButtonPanelNotGamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "skin_button" | "equip_button">;
    static skinButtonPanelNotGamepad_skinButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "pressed" | "hover">;
    static skinButtonPanelNotGamepad_skinButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinButtonPanelNotGamepad_skinButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinButtonPanelNotGamepad_equipButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad" | "not_gamepad">;
    static skinButtonPanel_gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinButtonPanel_notGamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static equipButtonStatePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_panel">;
    static equipButtonStatePanel_buttonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static equipButtonText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static equipButtonText_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button" | "lock" | "model">;
    static skinsGridItem_model<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsGridItem_lock<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsGridItem_button<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bg">;
    static skinsPanel_bg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left" | "right" | "sg" | "progress_loading_panel">;
    static skinsPanel_bg_left<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsPanel_bg_sg<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsPanel_bg_right<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsPanel_bg_progressLoadingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading" | "progress_loading_outline">;
    static skinsPanel_bg_progressLoadingPanel_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsPanel_bg_progressLoadingPanel_progressLoadingOutline<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "hover">;
    static skinsPanel_bg_progressLoadingPanel_progressLoadingOutline_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenRoot<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPackPurchaseUpsellScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPackPurchaseUpsellScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPackPurchaseUpsellDialogContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "container">;
    static skinPackPurchaseUpsellDialogContent_container<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$this_screen_content">;
    static skinPackPurchaseUpsellDialogContent_container_$thisScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPackPurchaseStandard<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPackPurchaseStandardContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPackPurchaseDialogContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "container">;
    static skinPackPurchaseDialogContent_container<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$this_screen_content">;
    static skinPackPurchaseDialogContent_container_$thisScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class SkinPicker extends Class {
    static bannerFill<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static chevronImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bumperImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static undoImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static plusIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static directionButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "chevron_image" | "bumper_image">;
    static directionButtonPanel_chevronImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static directionButtonPanel_bumperImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cyclePackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cyclePackLeftButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cyclePackRightButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "pressed" | "hover">;
    static skinButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinRotationArrows<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinViewerPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "skin_model_panel" | "lock" | "custom_skin_button">;
    static skinViewerPanel_customSkinButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinViewerPanel_skinModelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "skin_model">;
    static skinViewerPanel_skinModelPanel_skinModel<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinViewerPanel_lock<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenEntranceSizeAnimationPop<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static undoSkinButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static acceptSkinButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static stackItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static acceptSkinPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "stack_item_0" | "stack_item_1">;
    static acceptSkinPanel_stackItem0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "undo_btn">;
    static acceptSkinPanel_stackItem0_undoBtn<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static acceptSkinPanel_stackItem1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "accept_button">;
    static acceptSkinPanel_stackItem1_acceptButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static appearanceStatusImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "limited_status_image" | "no_restrictions_status_image">;
    static appearanceStatusImagePanel_limitedStatusImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static appearanceStatusImagePanel_noRestrictionsStatusImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static appearanceStatusContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "appearance_status_image_panel" | "appearance_status_label_panel">;
    static appearanceStatusContent_appearanceStatusImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static appearanceStatusContent_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static appearanceStatusContent_appearanceStatusLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "appearance_status_label">;
    static appearanceStatusContent_appearanceStatusLabelPanel_appearanceStatusLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static previewSkinPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "preview" | "button_frame">;
    static previewSkinPanel_preview<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static previewSkinPanel_buttonFrame<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "stack_item_0" | "notification_and_accept_input_panel">;
    static previewSkinPanel_buttonFrame_stackItem0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "rotation">;
    static previewSkinPanel_buttonFrame_stackItem0_rotation<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static previewSkinPanel_buttonFrame_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static previewSkinPanel_buttonFrame_notificationAndAcceptInputPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "notification_and_accept_stack">;
    static previewSkinPanel_buttonFrame_notificationAndAcceptInputPanel_notificationAndAcceptStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "stack_item_1" | "skin_status_notification_section">;
    static previewSkinPanel_buttonFrame_notificationAndAcceptInputPanel_notificationAndAcceptStack_skinStatusNotificationSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "appearance_status_notification_panel">;
    static previewSkinPanel_buttonFrame_notificationAndAcceptInputPanel_notificationAndAcceptStack_skinStatusNotificationSection_appearanceStatusNotificationPanel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static previewSkinPanel_buttonFrame_notificationAndAcceptInputPanel_notificationAndAcceptStack_stackItem1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "accept">;
    static previewSkinPanel_buttonFrame_notificationAndAcceptInputPanel_notificationAndAcceptStack_stackItem1_accept<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinModel<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static premiumSkinButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinLock<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static newPackIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static newPackIcon_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static packLock<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "locked" | "unlocked">;
    static packLock_locked<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static packLock_unlocked<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinInputPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "sg">;
    static skinInputPanel_sg<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button" | "clip" | "lock">;
    static skinsGridItem_clip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "model">;
    static skinsGridItem_clip_model<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsGridItem_lock<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsGridItem_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinsGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static packName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static packGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "header" | "bg">;
    static packGridItem_header<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "pack_name" | "padding_2" | "padding_3" | "new_pack_icon" | "pack_lock">;
    static packGridItem_header_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packGridItem_header_packLock<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packGridItem_header_packName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static packGridItem_header_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packGridItem_header_newPackIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packGridItem_header_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packGridItem_bg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "progress_loading" | "skin_input_panel" | "expand_view_button" | "progress_loading_no_connection">;
    static packGridItem_bg_skinInputPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packGridItem_bg_expandViewButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static packGridItem_bg_progressLoadingNoConnection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packGridItem_bg_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static premiumPacksGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static standardSkinButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultSkinsGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button" | "model">;
    static defaultSkinsGridItem_model<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultSkinsGridItem_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultSkinsGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static recentSkinsGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button" | "clip">;
    static recentSkinsGridItem_clip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "model">;
    static recentSkinsGridItem_clip_model<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static recentSkinsGridItem_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static recentSkinsGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static standardFrame<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static standardHeader<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static standardFill<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static standardPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "default_skins" | "recent_skins">;
    static standardPanel_defaultSkins<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "fill" | "header">;
    static standardPanel_defaultSkins_header<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static standardPanel_defaultSkins_fill<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "default_skins_grid">;
    static standardPanel_defaultSkins_fill_defaultSkinsGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static standardPanel_recentSkins<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "fill" | "header">;
    static standardPanel_recentSkins_header<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static standardPanel_recentSkins_fill<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "recent_skins_grid" | "recent_skins_loading_panel">;
    static standardPanel_recentSkins_fill_recentSkinsGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static standardPanel_recentSkins_fill_recentSkinsLoadingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "premium_packs_grid" | "standard_panel">;
    static scrollingContentStack_standardPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack_premiumPacksGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static allSkinsContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "scrolling_frame">;
    static allSkinsContent_scrollingFrame<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "change_skin_scroll" | "progress_loading">;
    static allSkinsContent_scrollingFrame_changeSkinScroll<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static allSkinsContent_scrollingFrame_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static allSkinsFrame<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "all_skins_content">;
    static allSkinsFrame_allSkinsContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleBar<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "padding_2" | "fill_panel" | "skin_name_holder">;
    static titleBar_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleBar_fillPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_holder">;
    static titleBar_fillPanel_titleHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "change_skin_title">;
    static titleBar_fillPanel_titleHolder_changeSkinTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleBar_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleBar_skinNameHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "preview_skin_name">;
    static titleBar_skinNameHolder_previewSkinName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleBar_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogSkinModel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "paper_doll">;
    static popupDialogSkinModel_paperDoll<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogChooseSkinTypeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "pressed" | "hover">;
    static popupDialogChooseSkinTypeButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogChooseSkinTypeButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogChooseSkinTypePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "model" | "button_highlight">;
    static popupDialogChooseSkinTypePanel_model<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialogChooseSkinTypePanel_buttonHighlight<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_invalidCustomSkin<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_bg" | "popup_dialog_message" | "popup_dialog_middle_button">;
    static popupDialog_invalidCustomSkin_popupDialogBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_invalidCustomSkin_popupDialogMessage<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_invalidCustomSkin_popupDialogMiddleButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_upsellWithoutStore<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_chooseSkinType<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "left" | "right" | "popup_dialog_bg" | "popup_dialog_message">;
    static popupDialog_chooseSkinType_popupDialogBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_chooseSkinType_popupDialogMessage<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_chooseSkinType_left<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_chooseSkinType_right<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title" | "selector_area" | "content_area" | "section_divider">;
    static content_title<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static content_selectorArea<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static content_contentArea<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static content_sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPickerScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPickerScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "container" | "bg" | "popup_dialog_factory">;
    static skinPickerScreenContent_bg<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPickerScreenContent_container<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static skinPickerScreenContent_container_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPickerScreenContent_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableSelectorAreaContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$selector_stack_panel">;
    static scrollableSelectorAreaContent_$selectorStackPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorArea<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "all_skins" | "inactive_modal_pane_fade">;
    static selectorArea_allSkins<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorArea_inactiveModalPaneFade<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentArea<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "preview_skin" | "inactive_modal_pane_fade">;
    static contentArea_previewSkin<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentArea_inactiveModalPaneFade<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class SmithingTable2 extends Class {
    static smithingIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static upgradeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconAndTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "upgrade_label" | "smithing_icon_panel">;
    static iconAndTextPanel_smithingIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconAndTextPanel_upgradeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "smithing_icon">;
    static smithingIconPanel_smithingIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingMaterialImageIngot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static crossOutIconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static crossOutIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "hover">;
    static crossOutIconButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static crossOutIconButton_hover<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingInputImageTemplates<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingInputImageArmors<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingInputImageArmorsAndTools<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingMaterialImageAll<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateOverlayImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "templates">;
    static templateOverlayImage_templates<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputOverlayImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "armors_and_tools" | "armors">;
    static inputOverlayImage_armorsAndTools<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputOverlayImage_armors<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static materialOverlayImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "all_materials" | "ingot">;
    static materialOverlayImage_allMaterials<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static materialOverlayImage_ingot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableOutputSlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "container_item">;
    static smithingTableItemSlot_containerItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "input_item_slot" | "material_item_slot" | "yields" | "result_item_slot" | "template_item_slot" | "result_item_preview">;
    static recipeGrid_templateItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeGrid_inputItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeGrid_materialItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeGrid_yields<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cross_out_icon" | "arrow_icon">;
    static recipeGrid_yields_arrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeGrid_yields_crossOutIcon<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeGrid_resultItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeGrid_resultItemPreview<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "recipe_grid">;
    static recipePanel_recipeGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultItemPreview<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inner">;
    static resultItemPreview_inner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultItemPreviewInner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "smithing_preview_renderer">;
    static resultItemPreviewInner_smithingPreviewRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static helpButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "toolbar_background">;
    static toolbarPanel_toolbarBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "toolbar_stack_panel">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "help_button_panel" | "close_button_panel">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_helpButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "help_button">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_helpButtonPanel_helpButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_closeButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "close_button">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_closeButtonPanel_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarAnchor<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toolbar_panel">;
    static toolbarAnchor_toolbarPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon_and_text_panel" | "recipe_panel">;
    static topHalfPanel_iconAndTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfPanel_recipePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "root_panel" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory">;
    static smithingTablePanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_cursor" | "common_panel" | "inventory_selected_icon_button" | "toolbar_anchor" | "smithing_table_screen_inventory">;
    static smithingTablePanel_rootPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_rootPanel_smithingTableScreenInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top_half_panel" | "inventory_panel_bottom_half_with_label" | "hotbar_grid" | "inventory_take_progress_icon_button">;
    static smithingTablePanel_rootPanel_smithingTableScreenInventory_topHalfPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_rootPanel_smithingTableScreenInventory_inventoryPanelBottomHalfWithLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_rootPanel_smithingTableScreenInventory_hotbarGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_rootPanel_smithingTableScreenInventory_inventoryTakeProgressIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_rootPanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_rootPanel_toolbarAnchor<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_rootPanel_gamepadCursor<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class SmithingTable2Pocket extends Class {
    static smithingTableItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingMaterialImageIngot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static backgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingInputImageTemplates<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingMaterialImageAll<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingInputImageArmors<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingInputImageArmorsAndTools<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateOverlayImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "templates">;
    static templateOverlayImage_templates<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputOverlayImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "armors_and_tools" | "armors">;
    static inputOverlayImage_armorsAndTools<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputOverlayImage_armors<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static materialOverlayImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "all_materials" | "ingot">;
    static materialOverlayImage_ingot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static materialOverlayImage_allMaterials<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static upgradeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "slot">;
    static slotGridItem_slot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static materialSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputsStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "input_slot" | "material_slot" | "padding1" | "padding2" | "template_slot">;
    static inputsStack_templateSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputsStack_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputsStack_inputSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputsStack_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputsStack_materialSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inputs_stack">;
    static inputsPanel_inputsStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static crossOutImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static crossOutIcon<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "hover">;
    static crossOutIcon_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static crossOutIcon_hover<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingArrow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "cross_out">;
    static craftingArrow_crossOut<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static craftingArrowGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "crafting_arrow">;
    static craftingArrowGridItem_craftingArrow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultItemPreview<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "smithing_preview_renderer">;
    static resultItemPreview_smithingPreviewRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultItemPreviewGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "result_preview">;
    static resultItemPreviewGridItem_resultPreview<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableContentsPanel<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "result_slot" | "label_holder" | "crafting_arrow" | "result_item_preview" | "inputs">;
    static smithingTableContentsPanel_labelHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label">;
    static smithingTableContentsPanel_labelHolder_titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableContentsPanel_inputs<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableContentsPanel_resultSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableContentsPanel_craftingArrow<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableContentsPanel_resultItemPreview<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chestItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftTabInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftNavigationTabs<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_tab_inventory">;
    static leftNavigationTabs_leftTabInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content" | "gamepad_helpers_and_tabs_holder">;
    static leftPanel_gamepadHelpersAndTabsHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "navigation_tabs_holder">;
    static leftPanel_gamepadHelpersAndTabsHolder_navigationTabsHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left_navigation_tabs">;
    static leftPanel_gamepadHelpersAndTabsHolder_navigationTabsHolder_leftNavigationTabs<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_content<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "bg" | "inventory_scroll_panel">;
    static leftPanel_content_bg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_content_inventoryScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightTabSmithingTable<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightNavigationTabs<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "fill" | "pocket_tab_close_and_help_button" | "right_tab_smithing_table">;
    static rightNavigationTabs_pocketTabCloseAndHelpButton<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightNavigationTabs_fill<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightNavigationTabs_rightTabSmithingTable<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content" | "navigation_tabs_holder">;
    static rightPanel_content<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "bg" | "smithing_content_stack_panel">;
    static rightPanel_content_bg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_content_smithingContentStackPanel<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_navigationTabsHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "right_navigation_tabs">;
    static rightPanel_navigationTabsHolder_rightNavigationTabs<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketHotbarAndContentPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory" | "inventory_selected_icon_button" | "inventory_take_progress_icon_button" | "pocket_hotbar_and_content_panels">;
    static smithingTablePanel_pocketHotbarAndContentPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_inventoryTakeProgressIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class SmithingTable extends Class {
    static smithingImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static ingotImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static upgradeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconAndTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "upgrade_label" | "smithing_icon_panel">;
    static iconAndTextPanel_smithingIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconAndTextPanel_upgradeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "smithing_icon">;
    static smithingIconPanel_smithingIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static plusSignIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static crossOutIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableOutputSlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "container_item">;
    static smithingTableItemSlot_containerItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "input_item_slot" | "plus" | "material_item_slot" | "yields" | "result_item_slot">;
    static recipeGrid_inputItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeGrid_plus<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "plus_sign_icon">;
    static recipeGrid_plus_plusSignIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeGrid_materialItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeGrid_yields<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cross_out_icon" | "arrow_icon">;
    static recipeGrid_yields_arrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeGrid_yields_crossOutIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeGrid_resultItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "recipe_grid">;
    static recipePanel_recipeGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon_and_text_panel" | "recipe_panel">;
    static topHalfPanel_iconAndTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfPanel_recipePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "root_panel" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory">;
    static smithingTablePanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_cursor" | "common_panel" | "inventory_selected_icon_button" | "smithing_table_screen_inventory">;
    static smithingTablePanel_rootPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_rootPanel_smithingTableScreenInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top_half_panel" | "inventory_panel_bottom_half_with_label" | "hotbar_grid" | "inventory_take_progress_icon_button">;
    static smithingTablePanel_rootPanel_smithingTableScreenInventory_topHalfPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_rootPanel_smithingTableScreenInventory_inventoryPanelBottomHalfWithLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_rootPanel_smithingTableScreenInventory_hotbarGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_rootPanel_smithingTableScreenInventory_inventoryTakeProgressIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_rootPanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_rootPanel_gamepadCursor<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class SmithingTablePocket extends Class {
    static ingotImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static backgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static upgradeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "smithing_icon">;
    static smithingIconPanel_smithingIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableTitleAndTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "upgrade_label" | "smithing_icon_panel">;
    static smithingTableTitleAndTextPanel_smithingIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableTitleAndTextPanel_upgradeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "input_slot" | "material_slot" | "result_slot" | "plus_sign" | "arrow">;
    static slotsPanel_inputSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel_materialSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel_resultSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel_plusSign<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotsPanel_arrow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "cross_out">;
    static slotsPanel_arrow_crossOut<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableContentsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "slots_panel" | "smithing_table_title_and_text_panel">;
    static smithingTableContentsPanel_smithingTableTitleAndTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTableContentsPanel_slotsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static inventoryContent_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryAndSmithingTablePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_half_screen" | "smithing_half_screen">;
    static inventoryAndSmithingTablePanel_inventoryHalfScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_content">;
    static inventoryAndSmithingTablePanel_inventoryHalfScreen_inventoryContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryAndSmithingTablePanel_smithingHalfScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "smithing_table_content">;
    static inventoryAndSmithingTablePanel_smithingHalfScreen_smithingTableContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "panel" | "header_background" | "close_button">;
    static header_headerBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static header_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static header_panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label">;
    static header_panel_titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerAndContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "header" | "inventory_and_smithing_table_panel">;
    static headerAndContentStackPanel_header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static headerAndContentStackPanel_inventoryAndSmithingTablePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "root_panel" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory" | "inventory_selected_icon_button" | "header_and_content_stack_panel" | "bg" | "hold_icon">;
    static smithingTablePanel_bg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_headerAndContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_holdIcon<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static smithingTablePanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Smoker extends Class {
    static smokerScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Start extends Class {
    static achievementsIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inboxBellAnimatedIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inboxIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static unreadNotificationIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static feedbackIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static feedbackIconEdu<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static XboxIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static changeSkinIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static manageAccountsIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static newOffersIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduAiLessonCrafterButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padded_icon" | "padded_label">;
    static eduAiLessonCrafterButtonContent_paddedLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static eduAiLessonCrafterButtonContent_paddedLabel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduAiLessonCrafterButtonContent_paddedIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static eduAiLessonCrafterButtonContent_paddedIcon_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static previewTag<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "preview_label">;
    static previewTag_previewLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static updatePromptIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceErrorIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static saleRibbonIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static alexIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamerpic<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static copyright<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label" | "label_background">;
    static copyright_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static copyright_labelBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static developmentVersion<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label" | "label_background">;
    static developmentVersion_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static developmentVersion_labelBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static version<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label" | "label_background">;
    static version_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static version_labelBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialInfo<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label_background" | "trial_label">;
    static trialInfo_trialLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialInfo_labelBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static textPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "version" | "development_version" | "copyright">;
    static textPanel_copyright<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textPanel_developmentVersion<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textPanel_version<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinOrProfilePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dressing_room_button" | "profile_button" | "change_skin" | "change_skin_button_demo" | "switch_accounts">;
    static skinOrProfilePanel_changeSkin<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinOrProfilePanel_changeSkinButtonDemo<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinOrProfilePanel_dressingRoomButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinOrProfilePanel_switchAccounts<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinOrProfilePanel_profileButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static changeSkinButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static changeSkinButtonDemo<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static switchAccountsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static dressingRoomButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static profileButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_middle" | "gamerpic_offset_wrapper" | "vertically_central_text" | "padding_right">;
    static profileButtonContent_gamerpicOffsetWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamerpic_with_border">;
    static profileButtonContent_gamerpicOffsetWrapper_gamerpicWithBorder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamerpic" | "alex_icon" | "border_black">;
    static profileButtonContent_gamerpicOffsetWrapper_gamerpicWithBorder_gamerpic<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static profileButtonContent_gamerpicOffsetWrapper_gamerpicWithBorder_alexIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static profileButtonContent_gamerpicOffsetWrapper_gamerpicWithBorder_borderBlack<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static profileButtonContent_paddingMiddle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static profileButtonContent_verticallyCentralText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_padding" | "profile_button_label">;
    static profileButtonContent_verticallyCentralText_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static profileButtonContent_verticallyCentralText_profileButtonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static profileButtonContent_paddingRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static profileButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinViewerPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "paper_doll_panel" | "paper_doll_name_tag">;
    static skinViewerPanel_paperDollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "paper_doll" | "appearacne_loading_panel">;
    static skinViewerPanel_paperDollPanel_paperDoll<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinViewerPanel_paperDollPanel_appearacneLoadingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinViewerPanel_paperDollNameTag<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "viewer_panel" | "change_profile_or_skin">;
    static skinPanel_changeProfileOrSkin<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinPanel_viewerPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsdrawerButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "friendsdrawer_button">;
    static friendsdrawerButtonPanel_friendsdrawerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringBadge<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static badgeAndCaption<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "caption_and_padding" | "badge_and_padding">;
    static badgeAndCaption_captionAndPadding<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "caption" | "pad">;
    static badgeAndCaption_captionAndPadding_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static badgeAndCaption_captionAndPadding_caption<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static badgeAndCaption_badgeAndPadding<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "fill" | "badge">;
    static badgeAndCaption_badgeAndPadding_badge<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static badgeAndCaption_badgeAndPadding_fill<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringCaption<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "countdown_text">;
    static gatheringCaption_countdownText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "bottom_pad" | "horizontal_panel">;
    static gatheringPanel_horizontalPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad" | "inner_panel">;
    static gatheringPanel_horizontalPanel_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringPanel_horizontalPanel_innerPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "gathering_button" | "badge_and_caption">;
    static gatheringPanel_horizontalPanel_innerPanel_badgeAndCaption<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringPanel_horizontalPanel_innerPanel_gatheringButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringPanel_bottomPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduFeedbackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static releaseFeedbackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static preReleaseFeedbackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static feedbackButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "edu_feedback_button" | "release_feedback_button" | "pre_release_feedback_button">;
    static feedbackButton_eduFeedbackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static feedbackButton_releaseFeedbackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static feedbackButton_preReleaseFeedbackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static achievementsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static achievementsIconButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "achievements_button">;
    static achievementsIconButton_achievementsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static inboxButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static inboxButtonUnreadPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background">;
    static inboxButtonUnreadPanel_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inboxIconButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inbox_button" | "inbox_button_unread_panel">;
    static inboxIconButton_inboxButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static inboxIconButton_inboxButtonUnreadPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblSigninButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformSigninButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static columnFrame<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static educatorResourcesButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static upperOnlineButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "stacked_column" | "top_pad" | "bottom_pad">;
    static upperOnlineButtonsPanel_topPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static upperOnlineButtonsPanel_stackedColumn<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "xbl_btn" | "xbl_btn_padding" | "platform_signin_btn" | "gamertag_pic_and_label">;
    static upperOnlineButtonsPanel_stackedColumn_xblBtnPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static upperOnlineButtonsPanel_stackedColumn_xblBtn<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "xbl_signin_button">;
    static upperOnlineButtonsPanel_stackedColumn_xblBtn_xblSigninButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static upperOnlineButtonsPanel_stackedColumn_platformSigninBtn<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "platform_signin_button">;
    static upperOnlineButtonsPanel_stackedColumn_platformSigninBtn_platformSigninButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static upperOnlineButtonsPanel_stackedColumn_gamertagPicAndLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer" | "label_panel" | "gamerpic_with_border">;
    static upperOnlineButtonsPanel_stackedColumn_gamertagPicAndLabel_gamerpicWithBorder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamerpic" | "border_white">;
    static upperOnlineButtonsPanel_stackedColumn_gamertagPicAndLabel_gamerpicWithBorder_gamerpic<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static upperOnlineButtonsPanel_stackedColumn_gamertagPicAndLabel_gamerpicWithBorder_borderWhite<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static upperOnlineButtonsPanel_stackedColumn_gamertagPicAndLabel_spacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static upperOnlineButtonsPanel_stackedColumn_gamertagPicAndLabel_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamertag_label">;
    static upperOnlineButtonsPanel_stackedColumn_gamertagPicAndLabel_labelPanel_gamertagLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static upperOnlineButtonsPanel_bottomPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lowerOnlineButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "stacked_column">;
    static lowerOnlineButtonsPanel_stackedColumn<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "feedback_btn" | "feedback_padding" | "profile_btn" | "signingin" | "achievements_padding" | "achievements_btn" | "inbox_padding" | "inbox_btn" | "profile_btn_padding">;
    static lowerOnlineButtonsPanel_stackedColumn_feedbackPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lowerOnlineButtonsPanel_stackedColumn_feedbackBtn<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "feedback_button">;
    static lowerOnlineButtonsPanel_stackedColumn_feedbackBtn_feedbackButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lowerOnlineButtonsPanel_stackedColumn_signingin<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static lowerOnlineButtonsPanel_stackedColumn_achievementsPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lowerOnlineButtonsPanel_stackedColumn_achievementsBtn<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "achievements_icon_button">;
    static lowerOnlineButtonsPanel_stackedColumn_achievementsBtn_achievementsIconButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lowerOnlineButtonsPanel_stackedColumn_inboxPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lowerOnlineButtonsPanel_stackedColumn_inboxBtn<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inbox_icon_button">;
    static lowerOnlineButtonsPanel_stackedColumn_inboxBtn_inboxIconButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lowerOnlineButtonsPanel_stackedColumn_profileBtnPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lowerOnlineButtonsPanel_stackedColumn_profileBtn<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "profile_button">;
    static lowerOnlineButtonsPanel_stackedColumn_profileBtn_profileButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonDark<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainContentButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonGif<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static playButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static getStartedButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainMenuButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static featuredWorldButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static unlockFullGameButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static launchEditionsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static aiLessonCrafterButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static settingsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static serversButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorStoreButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeButtonSaleBanner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "banner_label_padding">;
    static storeButtonSaleBanner_bannerLabelPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "banner_label">;
    static storeButtonSaleBanner_bannerLabelPadding_bannerLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeButtonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_label" | "sales_banner">;
    static storeButtonContent_buttonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeButtonContent_salesBanner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeErrorImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeErrorContent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "marketplace_button_label">;
    static storeErrorContent_marketplaceButtonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeSaleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeButtonArt<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label" | "default_background" | "hover_background" | "default_foreground" | "hover_foreground">;
    static storeButtonArt_defaultBackground<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeButtonArt_hoverBackground<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeButtonArt_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeButtonArt_defaultForeground<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeButtonArt_hoverForeground<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeButtonStack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "store_button" | "new_offers_icon" | "store_button_art" | "update_icon">;
    static storeButtonStack_storeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeButtonStack_storeButtonArt<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeButtonStack_updateIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeButtonStack_newOffersIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyGameButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static stackedRow<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_3" | "title_panel_content" | "title_offset_padding" | "padding_fill_1" | "main_buttons_panel" | "main_buttons_panel_new_player_flow" | "padding_fill_2">;
    static mainButtonsStackPanel_titleOffsetPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsStackPanel_titlePanelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsStackPanel_paddingFill1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsStackPanel_mainButtonsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_buttons_panel">;
    static mainButtonsStackPanel_mainButtonsPanel_mainButtonsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsStackPanel_mainButtonsPanelNewPlayerFlow<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_buttons_panel_new_player_flow">;
    static mainButtonsStackPanel_mainButtonsPanelNewPlayerFlow_mainButtonsPanelNewPlayerFlow<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsStackPanel_paddingFill2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helpers" | "keyboard_helpers">;
    static mainButtonsStackPanel_paddingFill2_gamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsStackPanel_paddingFill2_keyboardHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsStackPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsPanelNewPlayerFlow<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stacked_rows">;
    static mainButtonsPanelNewPlayerFlow_stackedRows<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer" | "test_label_row" | "get_started_row" | "main_menu_row">;
    static mainButtonsPanelNewPlayerFlow_stackedRows_testLabelRow<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "trial_info">;
    static mainButtonsPanelNewPlayerFlow_stackedRows_testLabelRow_trialInfo<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsPanelNewPlayerFlow_stackedRows_spacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsPanelNewPlayerFlow_stackedRows_getStartedRow<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "get_started_button">;
    static mainButtonsPanelNewPlayerFlow_stackedRows_getStartedRow_getStartedButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsPanelNewPlayerFlow_stackedRows_mainMenuRow<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_menu_button">;
    static mainButtonsPanelNewPlayerFlow_stackedRows_mainMenuRow_mainMenuButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stacked_rows">;
    static mainButtonsPanel_stackedRows<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "settings" | "stacked_row_0" | "featured_world" | "stacked_row_2" | "ai_lesson_crafter_row" | "edu_featured_button" | "settings_and_editions_panel" | "realms" | "unlock_full_game_row" | "store" | "buy_game" | "launch_editions">;
    static mainButtonsPanel_stackedRows_stackedRow0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "play_button">;
    static mainButtonsPanel_stackedRows_stackedRow0_playButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsPanel_stackedRows_featuredWorld<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "featured_world_button">;
    static mainButtonsPanel_stackedRows_featuredWorld_featuredWorldButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsPanel_stackedRows_stackedRow2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stacked_columns">;
    static mainButtonsPanel_stackedRows_stackedRow2_stackedColumns<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "stacked_col_0" | "stacked_col_1">;
    static mainButtonsPanel_stackedRows_stackedRow2_stackedColumns_stackedCol0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "settings_button">;
    static mainButtonsPanel_stackedRows_stackedRow2_stackedColumns_stackedCol0_settingsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsPanel_stackedRows_stackedRow2_stackedColumns_stackedCol1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "store_button" | "new_offers_icon" | "update_icon">;
    static mainButtonsPanel_stackedRows_stackedRow2_stackedColumns_stackedCol1_storeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsPanel_stackedRows_stackedRow2_stackedColumns_stackedCol1_updateIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsPanel_stackedRows_stackedRow2_stackedColumns_stackedCol1_newOffersIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsPanel_stackedRows_aiLessonCrafterRow<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "ai_lesson_crafter_button" | "lesson_crafter_preview_overlay">;
    static mainButtonsPanel_stackedRows_aiLessonCrafterRow_aiLessonCrafterButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsPanel_stackedRows_aiLessonCrafterRow_lessonCrafterPreviewOverlay<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsPanel_stackedRows_eduFeaturedButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "new_and_featured_button">;
    static mainButtonsPanel_stackedRows_eduFeaturedButton_newAndFeaturedButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsPanel_stackedRows_settingsAndEditionsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "settings_and_editions" | "settings_panel">;
    static mainButtonsPanel_stackedRows_settingsAndEditionsPanel_settingsAndEditions<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "settings_panel" | "editions_panel">;
    static mainButtonsPanel_stackedRows_settingsAndEditionsPanel_settingsAndEditions_settingsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "settings_button">;
    static mainButtonsPanel_stackedRows_settingsAndEditionsPanel_settingsAndEditions_settingsPanel_settingsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsPanel_stackedRows_settingsAndEditionsPanel_settingsAndEditions_editionsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "launch_editions_button">;
    static mainButtonsPanel_stackedRows_settingsAndEditionsPanel_settingsAndEditions_editionsPanel_launchEditionsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsPanel_stackedRows_settingsAndEditionsPanel_settingsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "settings_button">;
    static mainButtonsPanel_stackedRows_settingsAndEditionsPanel_settingsPanel_settingsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsPanel_stackedRows_settings<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "settings_button">;
    static mainButtonsPanel_stackedRows_settings_settingsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsPanel_stackedRows_realms<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_button">;
    static mainButtonsPanel_stackedRows_realms_realmsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsPanel_stackedRows_unlockFullGameRow<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "unlock_full_game">;
    static mainButtonsPanel_stackedRows_unlockFullGameRow_unlockFullGame<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsPanel_stackedRows_store<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsPanel_stackedRows_buyGame<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "buy_game_button">;
    static mainButtonsPanel_stackedRows_buyGame_buyGameButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainButtonsPanel_stackedRows_launchEditions<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "launch_editions_button">;
    static mainButtonsPanel_stackedRows_launchEditions_launchEditionsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_a" | "gamepad_helper_b_and_padding" | "gamepad_helper_y_and_padding" | "gamepad_helper_x_and_padding">;
    static gamepadHelpers_gamepadHelperA<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers_gamepadHelperBAndPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_b">;
    static gamepadHelpers_gamepadHelperBAndPadding_gamepadHelperB<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers_gamepadHelperYAndPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_y">;
    static gamepadHelpers_gamepadHelperYAndPadding_gamepadHelperY<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers_gamepadHelperXAndPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_x">;
    static gamepadHelpers_gamepadHelperXAndPadding_gamepadHelperX<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static vrSwapDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardHelperVrSwap<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteNotificationIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inviteNotificationButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static notificationButtonText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static notificationButtonTextBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static notificationButtonTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static notificationButtonTextPanel_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, "background">;
    static notificationButtonTextPanel_text_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudUploadPrompt<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingChild<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static scrollingChild_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudUploadWorldsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudUploadLearnMoreButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudUploadDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudUploadDoNotShowCheckbox<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, "header_description_stack_panel">;
    static cloudUploadDoNotShowCheckbox_headerDescriptionStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "checkbox_visuals" | "buffer_panel" | "another_panel">;
    static cloudUploadDoNotShowCheckbox_headerDescriptionStackPanel_checkboxVisuals<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudUploadDoNotShowCheckbox_headerDescriptionStackPanel_bufferPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static cloudUploadDoNotShowCheckbox_headerDescriptionStackPanel_bufferPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static cloudUploadDoNotShowCheckbox_headerDescriptionStackPanel_anotherPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static startScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static startScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "skin_panel" | "popup_dialog_factory" | "text_panel" | "friendsdrawer_button_panel" | "main_buttons_and_title_panel" | "online_button_stack">;
    static startScreenContent_mainButtonsAndTitlePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static startScreenContent_onlineButtonStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "gathering_panel" | "upper_online_buttons_panel" | "lower_online_buttons_panel">;
    static startScreenContent_onlineButtonStack_gatheringPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static startScreenContent_onlineButtonStack_upperOnlineButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static startScreenContent_onlineButtonStack_lowerOnlineButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static startScreenContent_skinPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static startScreenContent_textPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static startScreenContent_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static startScreenContent_friendsdrawerButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Stonecutter extends Class {
    static stonecutterLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static stoneCellImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerCellImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static highlightSlotPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "highlight" | "hover_text" | "white_border">;
    static highlightSlotPanel_hoverText<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static highlightSlotPanel_highlight<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static highlightSlotPanel_whiteBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static stoneSlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "hover">;
    static stoneSlotButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item_renderer">;
    static itemPanel_itemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, "stack_count_label">;
    static itemPanel_itemRenderer_stackCountLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static stoneButton<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "item_button_ref" | "$background_image_control_name" | "banner_pattern">;
    static stoneButton_$backgroundImageControlName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static stoneButton_bannerPattern<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static stoneButton_itemButtonRef<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollGridPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "grid">;
    static scrollGridPanel_grid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static stoneBookPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "bg" | "scroll_panel">;
    static stoneBookPanel_bg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static stoneBookPanel_scrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultSlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputSlotsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "input_item_slot">;
    static inputSlotsStackPanel_inputItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "input_slots_holder" | "arrow_holder" | "result_item_slot_holder">;
    static topHalfStackPanel_inputSlotsHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "input_slots_stack_panel">;
    static topHalfStackPanel_inputSlotsHolder_inputSlotsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfStackPanel_arrowHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "arrow_icon">;
    static topHalfStackPanel_arrowHolder_arrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfStackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfStackPanel_resultItemSlotHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "result_item_slot">;
    static topHalfStackPanel_resultItemSlotHolder_resultItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top_half_stack_panel">;
    static topHalfPanel_topHalfStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "common_panel" | "stonecutter_screen_inventory">;
    static rightPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_stonecutterScreenInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top_half_panel" | "inventory_panel_bottom_half_with_label" | "hotbar_grid" | "stonecutter_label">;
    static rightPanel_stonecutterScreenInventory_stonecutterLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_stonecutterScreenInventory_topHalfPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_stonecutterScreenInventory_inventoryPanelBottomHalfWithLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_stonecutterScreenInventory_hotbarGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "toolbar_background">;
    static toolbarPanel_toolbarBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "toolbar_stack_panel">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "close_button_panel">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_closeButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "close_button">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_closeButtonPanel_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarAnchor<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toolbar_panel">;
    static toolbarAnchor_toolbarPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static centerFold<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "center_bg">;
    static centerFold_centerBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "right_panel" | "center_fold" | "toolbar_anchor" | "stone_book_panel">;
    static screenStackPanel_stoneBookPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenStackPanel_centerFold<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenStackPanel_rightPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenStackPanel_toolbarAnchor<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory" | "inventory_selected_icon_button" | "inventory_take_progress_icon_button" | "screen_stack_panel">;
    static stonecutterPanel_screenStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterPanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterPanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterPanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterPanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterPanel_inventoryTakeProgressIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterPanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class StonecutterPocket extends Class {
    static verticalArrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static chestItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content" | "navigation_tabs_holder">;
    static rightPanel_content<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "bg" | "stonecutter_content_stack_panel">;
    static rightPanel_content_bg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_content_stonecutterContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_navigationTabsHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "right_navigation_tabs">;
    static rightPanel_navigationTabsHolder_rightNavigationTabs<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightTabStonecutter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightNavigationTabs<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "fill" | "close" | "right_tab_stonecutter">;
    static rightNavigationTabs_close<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "close_button" | "nodrop_zone">;
    static rightNavigationTabs_close_nodropZone<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightNavigationTabs_close_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightNavigationTabs_fill<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightNavigationTabs_rightTabStonecutter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputSlotsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "input_item_slot">;
    static inputSlotsStackPanel_inputItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "panel" | "padding_1" | "label_holder">;
    static stonecutterContentStackPanel_labelHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stonecutter_label">;
    static stonecutterContentStackPanel_labelHolder_stonecutterLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterContentStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterContentStackPanel_panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack_panel">;
    static stonecutterContentStackPanel_panel_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_3" | "padding_4" | "padding_5" | "input_slots_holder" | "arrow_holder" | "result_item_slot_holder">;
    static stonecutterContentStackPanel_panel_stackPanel_inputSlotsHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "input_slots_stack_panel">;
    static stonecutterContentStackPanel_panel_stackPanel_inputSlotsHolder_inputSlotsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterContentStackPanel_panel_stackPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterContentStackPanel_panel_stackPanel_arrowHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "vertical_arrow_icon">;
    static stonecutterContentStackPanel_panel_stackPanel_arrowHolder_verticalArrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterContentStackPanel_panel_stackPanel_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterContentStackPanel_panel_stackPanel_resultItemSlotHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "result_item_slot">;
    static stonecutterContentStackPanel_panel_stackPanel_resultItemSlotHolder_resultItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterContentStackPanel_panel_stackPanel_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "inventory_title_label_centerer" | "inventory_scroll_panel">;
    static inventoryPanel_inventoryTitleLabelCenterer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_title_label">;
    static inventoryPanel_inventoryTitleLabelCenterer_inventoryTitleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryPanel_inventoryScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static patternButton<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static patternScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content" | "gamepad_helpers_and_tabs_holder">;
    static leftPanel_gamepadHelpersAndTabsHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "navigation_tabs_holder" | "tabs_left_gamepad_helpers">;
    static leftPanel_gamepadHelpersAndTabsHolder_tabsLeftGamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_gamepadHelpersAndTabsHolder_navigationTabsHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left_navigation_tabs">;
    static leftPanel_gamepadHelpersAndTabsHolder_navigationTabsHolder_leftNavigationTabs<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_content<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "bg" | "inventory_panel" | "pattern_scroll_panel">;
    static leftPanel_content_bg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_content_inventoryPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_content_patternScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftTabStones<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftTabInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftNavigationTabs<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "left_tab_inventory" | "left_tab_stones">;
    static leftNavigationTabs_leftTabStones<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftNavigationTabs_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftNavigationTabs_leftTabInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketHotbarAndContentPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory" | "inventory_selected_icon_button" | "inventory_take_progress_icon_button" | "pocket_hotbar_and_content_panels">;
    static stonecutterPanel_pocketHotbarAndContentPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterPanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterPanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterPanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterPanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterPanel_inventoryTakeProgressIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static stonecutterPanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class StorageManagement extends Class {
    static lockIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageHeaderPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "header_panel">;
    static storageHeaderPanel_headerPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "panel" | "file_storage_dropdown" | "file_storage_dropdown_edu" | "clear_cache_button_panel" | "clear_download_cache_button_panel" | "clear_screenshots_cache_button_panel" | "delete_local_screenshots_button_panel">;
    static storageHeaderPanel_headerPanel_fileStorageDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageHeaderPanel_headerPanel_fileStorageDropdownEdu<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageHeaderPanel_headerPanel_clearCacheButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "clear_cache_button">;
    static storageHeaderPanel_headerPanel_clearCacheButtonPanel_clearCacheButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageHeaderPanel_headerPanel_clearDownloadCacheButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "clear_download_button">;
    static storageHeaderPanel_headerPanel_clearDownloadCacheButtonPanel_clearDownloadButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageHeaderPanel_headerPanel_clearScreenshotsCacheButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "clear_screenshots_cache_button">;
    static storageHeaderPanel_headerPanel_clearScreenshotsCacheButtonPanel_clearScreenshotsCacheButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageHeaderPanel_headerPanel_deleteLocalScreenshotsButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "delete_local_screenshots_button">;
    static storageHeaderPanel_headerPanel_deleteLocalScreenshotsButtonPanel_deleteLocalScreenshotsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageHeaderPanel_headerPanel_panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "multiselect_button">;
    static storageHeaderPanel_headerPanel_panel_multiselectButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xButtonImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scroll_content">;
    static storageMainPanel_scrollContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageFooterPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "visibleContent">;
    static storageFooterPanel_visibleContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "delete_button" | "share_button">;
    static storageFooterPanel_visibleContent_deleteButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageFooterPanel_visibleContent_shareButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static deleteCheckbox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "selected_checkbox_image">;
    static deleteCheckbox_selectedCheckboxImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static genericButton<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "picture" | "text">;
    static genericButton_picture<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static genericButton_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonScrollPane<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "panel">;
    static mainContentPanel_panel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "image_panel" | "spacing" | "delete_checkbox" | "text_panel_offset">;
    static mainContentPanel_panel_spacing<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainContentPanel_panel_deleteCheckbox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainContentPanel_panel_imagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image_border">;
    static mainContentPanel_panel_imagePanel_imageBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "image">;
    static mainContentPanel_panel_imagePanel_imageBorder_image<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainContentPanel_panel_textPanelOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text_panel">;
    static mainContentPanel_panel_textPanelOffset_textPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "0">;
    static mainContentPanel_panel_textPanelOffset_textPanel_0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonMainButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "border" | "main_content_panel">;
    static commonMainButton_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonMainButton_border<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonMainButton_mainContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseGlyph<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "image">;
    static baseGlyph_image<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseGlyph_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainItemText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static greyButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconItemText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldItemText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "main_item_toggle" | "contentPanel">;
    static storageMainItemToggle_mainItemToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemToggle_contentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemToggle_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageScrollPane<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "category_stack_panel" | "multiselect_padding">;
    static storageScrollPane_categoryStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "stack_panel" | "legacy_world_stack_panel" | "retailtopreview_world_stack_panel">;
    static storageScrollPane_categoryStackPanel_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageScrollPane_categoryStackPanel_legacyWorldStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "legacy_world_controls">;
    static storageScrollPane_categoryStackPanel_legacyWorldStackPanel_legacyWorldControls<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageScrollPane_categoryStackPanel_retailtopreviewWorldStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "retailtopreview_world_controls">;
    static storageScrollPane_categoryStackPanel_retailtopreviewWorldStackPanel_retailtopreviewWorldControls<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageScrollPane_multiselectPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldControls<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateControls<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourceControls<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static behaviorControls<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinControls<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cachedControls<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourceSubItem<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "main_panel" | "dummy_panel">;
    static resourceSubItem_dummyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourceSubItem_mainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static resourceSubItem_mainPanel_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourceToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content_toggle" | "item_button_panel">;
    static resourceToggle_contentToggle<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, "default" | "hover" | "unchecked" | "unchecked_hover">;
    static resourceToggle_contentToggle_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourceToggle_contentToggle_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourceToggle_contentToggle_unchecked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourceToggle_contentToggle_uncheckedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourceToggle_itemButtonPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "y_sizing_panel">;
    static resourceToggle_itemButtonPanel_ySizingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "border">;
    static resourceToggle_itemButtonPanel_ySizingPanel_border<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "button_panel">;
    static resourceToggle_itemButtonPanel_ySizingPanel_border_buttonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "dependency_panel" | "blank" | "padding_1" | "padding_0" | "padding_2" | "padding_3" | "padding_4" | "delete_button" | "generate_texture_list_panel" | "share_panel" | "blank_3">;
    static resourceToggle_itemButtonPanel_ySizingPanel_border_buttonPanel_blank<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourceToggle_itemButtonPanel_ySizingPanel_border_buttonPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourceToggle_itemButtonPanel_ySizingPanel_border_buttonPanel_generateTextureListPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "blank" | "generate_texture_list_button">;
    static resourceToggle_itemButtonPanel_ySizingPanel_border_buttonPanel_generateTextureListPanel_blank<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourceToggle_itemButtonPanel_ySizingPanel_border_buttonPanel_generateTextureListPanel_generateTextureListButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourceToggle_itemButtonPanel_ySizingPanel_border_buttonPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourceToggle_itemButtonPanel_ySizingPanel_border_buttonPanel_deleteButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourceToggle_itemButtonPanel_ySizingPanel_border_buttonPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourceToggle_itemButtonPanel_ySizingPanel_border_buttonPanel_sharePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "blank" | "share_button">;
    static resourceToggle_itemButtonPanel_ySizingPanel_border_buttonPanel_sharePanel_blank<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourceToggle_itemButtonPanel_ySizingPanel_border_buttonPanel_sharePanel_shareButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourceToggle_itemButtonPanel_ySizingPanel_border_buttonPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourceToggle_itemButtonPanel_ySizingPanel_border_buttonPanel_blank3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourceToggle_itemButtonPanel_ySizingPanel_border_buttonPanel_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourceToggle_itemButtonPanel_ySizingPanel_border_buttonPanel_dependencyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "blank" | "dependency_button">;
    static resourceToggle_itemButtonPanel_ySizingPanel_border_buttonPanel_dependencyPanel_blank<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourceToggle_itemButtonPanel_ySizingPanel_border_buttonPanel_dependencyPanel_dependencyButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static subItemTrayButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphSubIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static subItemBlankButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textureIconText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textureIconSubItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static versionSubItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packDescriptionSubItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSubText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateSubText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static basicSubItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "image_panel" | "text_panel">;
    static dropdownButtonContent_imagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static dropdownButtonContent_imagePanel_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownButtonContent_textPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_label">;
    static dropdownButtonContent_textPanel_mainLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterOptions<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "0">;
    static filterOptions_0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightAssets<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonAdd<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "default">;
    static sortPanel_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortToggle<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemLegacyWorldToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "main_item_toggle" | "contentPanel">;
    static storageMainItemLegacyWorldToggle_mainItemToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemLegacyWorldToggle_contentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "loading_legacy_worlds_panel" | "dummy_panel" | "sync_legacy_world_button_panel" | "sync_legacy_world_description_panel" | "itemsPanel" | "sync_legacy_world_conversion_description_panel_dummy_panel" | "sync_legacy_world_conversion_description_panel">;
    static storageMainItemLegacyWorldToggle_contentPanel_syncLegacyWorldButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "dummy_panel" | "sync_legacy_world_button">;
    static storageMainItemLegacyWorldToggle_contentPanel_syncLegacyWorldButtonPanel_dummyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemLegacyWorldToggle_contentPanel_syncLegacyWorldButtonPanel_syncLegacyWorldButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemLegacyWorldToggle_contentPanel_dummyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemLegacyWorldToggle_contentPanel_syncLegacyWorldDescriptionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "dummy_panel" | "sync_legacy_world_description">;
    static storageMainItemLegacyWorldToggle_contentPanel_syncLegacyWorldDescriptionPanel_dummyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemLegacyWorldToggle_contentPanel_syncLegacyWorldDescriptionPanel_syncLegacyWorldDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemLegacyWorldToggle_contentPanel_itemsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemLegacyWorldToggle_contentPanel_syncLegacyWorldConversionDescriptionPanelDummyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemLegacyWorldToggle_contentPanel_syncLegacyWorldConversionDescriptionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "dummy_panel" | "sync_legacy_world_conversion_description">;
    static storageMainItemLegacyWorldToggle_contentPanel_syncLegacyWorldConversionDescriptionPanel_dummyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemLegacyWorldToggle_contentPanel_syncLegacyWorldConversionDescriptionPanel_syncLegacyWorldConversionDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemLegacyWorldToggle_contentPanel_loadingLegacyWorldsPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "padding" | "progress_loading_bars" | "loading_legacy_worlds_label">;
    static storageMainItemLegacyWorldToggle_contentPanel_loadingLegacyWorldsPanel_loadingLegacyWorldsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemLegacyWorldToggle_contentPanel_loadingLegacyWorldsPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemLegacyWorldToggle_contentPanel_loadingLegacyWorldsPanel_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemLegacyWorldToggle_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyWorldMainItemText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemRetailtopreviewWorldToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "main_item_toggle" | "contentPanel">;
    static storageMainItemRetailtopreviewWorldToggle_mainItemToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemRetailtopreviewWorldToggle_contentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "dummy_panel" | "itemsPanel" | "sync_retailtopreview_world_button_panel" | "sync_retailtopreview_world_description_panel" | "sync_retailtopreview_world_conversion_description_panel_dummy_panel" | "sync_retailtopreview_world_conversion_description_panel" | "loading_retailtopreview_worlds_panel">;
    static storageMainItemRetailtopreviewWorldToggle_contentPanel_syncRetailtopreviewWorldButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "dummy_panel" | "sync_retailtopreview_world_button">;
    static storageMainItemRetailtopreviewWorldToggle_contentPanel_syncRetailtopreviewWorldButtonPanel_dummyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemRetailtopreviewWorldToggle_contentPanel_syncRetailtopreviewWorldButtonPanel_syncRetailtopreviewWorldButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemRetailtopreviewWorldToggle_contentPanel_dummyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemRetailtopreviewWorldToggle_contentPanel_syncRetailtopreviewWorldDescriptionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "dummy_panel" | "sync_retailtopreview_world_description">;
    static storageMainItemRetailtopreviewWorldToggle_contentPanel_syncRetailtopreviewWorldDescriptionPanel_dummyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemRetailtopreviewWorldToggle_contentPanel_syncRetailtopreviewWorldDescriptionPanel_syncRetailtopreviewWorldDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemRetailtopreviewWorldToggle_contentPanel_itemsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemRetailtopreviewWorldToggle_contentPanel_syncRetailtopreviewWorldConversionDescriptionPanelDummyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemRetailtopreviewWorldToggle_contentPanel_syncRetailtopreviewWorldConversionDescriptionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "dummy_panel" | "sync_retailtopreview_world_conversion_description">;
    static storageMainItemRetailtopreviewWorldToggle_contentPanel_syncRetailtopreviewWorldConversionDescriptionPanel_dummyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemRetailtopreviewWorldToggle_contentPanel_syncRetailtopreviewWorldConversionDescriptionPanel_syncRetailtopreviewWorldConversionDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemRetailtopreviewWorldToggle_contentPanel_loadingRetailtopreviewWorldsPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "padding" | "progress_loading_bars" | "loading_retailtopreview_worlds_label">;
    static storageMainItemRetailtopreviewWorldToggle_contentPanel_loadingRetailtopreviewWorldsPanel_loadingRetailtopreviewWorldsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemRetailtopreviewWorldToggle_contentPanel_loadingRetailtopreviewWorldsPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemRetailtopreviewWorldToggle_contentPanel_loadingRetailtopreviewWorldsPanel_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageMainItemRetailtopreviewWorldToggle_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static retailtopreviewWorldMainItemText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class StorageManagementPopup extends Class {
    static storageDependencyModal<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "base">;
    static storageDependencyModal_base<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title" | "two_buttons" | "background_with_buttons" | "dependencies">;
    static storageDependencyModal_base_backgroundWithButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageDependencyModal_base_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageDependencyModal_base_dependencies<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageDependencyModal_base_twoButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left" | "right" | "disabled_left">;
    static storageDependencyModal_base_twoButtons_disabledLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageDependencyModal_base_twoButtons_left<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageDependencyModal_base_twoButtons_right<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageDependencyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scroll">;
    static storageDependencyPanel_scroll<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageDependencyScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dependencyItemContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static dependencyItemContent_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dependencyScrollPane<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "main_label" | "contentPanel">;
    static dependencyScrollPane_mainLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static dependencyScrollPane_contentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dependencyItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dependencyItemSmall<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dependencyResourceItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dependencyResourceItemSmall<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dependencySubItem<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "border" | "padding">;
    static dependencySubItem_border<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "stack">;
    static dependencySubItem_border_stack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "wrapper" | "contentPanel" | "panel_0" | "panel_1">;
    static dependencySubItem_border_stack_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dependencySubItem_border_stack_wrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dependency_item">;
    static dependencySubItem_border_stack_wrapper_dependencyItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dependencySubItem_border_stack_panel0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_label">;
    static dependencySubItem_border_stack_panel0_mainLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static dependencySubItem_border_stack_contentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dependencySubItem_border_stack_panel1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "remove_pack_button">;
    static dependencySubItem_border_stack_panel1_removePackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static dependencySubItem_border_stack_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dependencySubItem_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sharingPopupContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class StorageMigrationCommon extends Class {
    static progressPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "common_panel" | "base_content" | "inside_content">;
    static progressPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressPanel_baseContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_title_text" | "progress_bar_text">;
    static progressPanel_baseContent_progressTitleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressPanel_baseContent_progressBarText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressPanel_insideContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "loading_bar_panel" | "padding_1" | "padding_3" | "size_label">;
    static progressPanel_insideContent_sizeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressPanel_insideContent_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressPanel_insideContent_loadingBarPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_bars" | "fancy_progress_loading_bars">;
    static progressPanel_insideContent_loadingBarPanel_fancyProgressLoadingBars<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressPanel_insideContent_loadingBarPanel_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressPanel_insideContent_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static retryButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static goToFaqButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static nextButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static getStartedButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static startTransferButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static finishedMainMenuButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static startTransferOutOfSpaceButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static continueOutOfSpaceButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static resumeTransferButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static exitButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static retryHelpButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "retry" | "help">;
    static retryHelpButtonPanel_retry<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static retryHelpButtonPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static retryHelpButtonPanel_help<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalNoButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalOneButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalTwoButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseChildControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static baseChildControl_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fileSizeDescription<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "description" | "file_location" | "size_stack">;
    static fileSizeDescription_description<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static fileSizeDescription_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fileSizeDescription_sizeStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "file_size_available" | "file_size_total" | "padding_1" | "padding_2" | "file_text">;
    static fileSizeDescription_sizeStack_fileText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static fileSizeDescription_sizeStack_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fileSizeDescription_sizeStack_fileSizeTotal<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static fileSizeDescription_sizeStack_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fileSizeDescription_sizeStack_fileSizeAvailable<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static fileSizeDescription_fileLocation<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorIconAndDescription<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "description" | "error_image">;
    static errorIconAndDescription_errorImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorIconAndDescription_description<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static fileSizeDescriptionWithError<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "error_icon_and_description" | "file_size">;
    static fileSizeDescriptionWithError_fileSize<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fileSizeDescriptionWithError_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fileSizeDescriptionWithError_errorIconAndDescription<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static startTransfer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static startTransferContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resumeTransfer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resumeTransferContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "file_size">;
    static resumeTransferContent_fileSize<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transferErrorOutOfSpace<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transferErrorOutOfSpaceContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class StorageMigrationGeneric extends Class {
    static storageMigrationGenericScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_factory" | "modal_progress_panel_no_cancel">;
    static modalScreenContent_modalProgressPanelNoCancel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalScreenContent_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static startTransfer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static startTransferOutOfSpace<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static startTransferOutOfSpaceContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "error_icon_and_description" | "base_start_content">;
    static startTransferOutOfSpaceContent_baseStartContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static startTransferOutOfSpaceContent_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static startTransferOutOfSpaceContent_errorIconAndDescription<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static finished<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static finishedContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "description">;
    static finishedContent_description<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static resumeTransferOutOfSpace<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resumeTransferOutOfSpaceContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transferError<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transferErrorContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "description">;
    static transferErrorContent_description<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static transferErrorOutOfSpace<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CommonStore extends Class {
    static storeBaseScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static offerImagePanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannerFill<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeDescriptionBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeDescriptionBackgroundDark<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static textStyleLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text_label">;
    static textStyleLabel_textLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlTexture<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "pressed" | "hover" | "icon_overlay_panel">;
    static storeOfferGridButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "key_art_size_panel">;
    static storeOfferGridButton_hover_keyArtSizePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "key_art_frame">;
    static storeOfferGridButton_hover_keyArtSizePanel_keyArtFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "key_art_size_panel">;
    static storeOfferGridButton_pressed_keyArtSizePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "key_art_frame">;
    static storeOfferGridButton_pressed_keyArtSizePanel_keyArtFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridButton_iconOverlayPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ribbonBarTextBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static ribbonBarRedHoverTextBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static coinIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tag<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "new_offer_label">;
    static tag_newOfferLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceErrorIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static newOfferIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static statusNewOfferIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateBalloonIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconOverlayPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon_overlay_position_factory">;
    static iconOverlayPanel_iconOverlayPositionFactory<T extends Types = Types.CollectionPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconOverlayPositionFactory<T extends Types = Types.CollectionPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topLeftIconFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topMiddleIconFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topRightIconFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftMiddleIconFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static centerIconFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightMiddleIconFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bottomLeftIconFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bottomMiddleIconFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bottomRightIconFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newOfferIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "new_icon">;
    static newOfferIconPanel_newIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateOfferIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "update_icon">;
    static updateOfferIconPanel_updateIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconOverlayImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image_stack_panel">;
    static iconOverlayImagePanel_imageStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "icon">;
    static iconOverlayImagePanel_imageStackPanel_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconOverlayImagePanel_imageStackPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconOverlaySdlPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static statusIconOverlay<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "icon_overlay_label_panel">;
    static statusIconOverlay_iconOverlayLabelPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "icon_panel" | "left_margin_padding" | "left_padding_1" | "left_padding_2" | "right_padding_1" | "right_padding_2" | "right_margin_padding">;
    static statusIconOverlay_iconOverlayLabelPanel_leftMarginPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static statusIconOverlay_iconOverlayLabelPanel_leftPadding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static statusIconOverlay_iconOverlayLabelPanel_leftPadding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static statusIconOverlay_iconOverlayLabelPanel_iconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon_overlay_label">;
    static statusIconOverlay_iconOverlayLabelPanel_iconPanel_iconOverlayLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static statusIconOverlay_iconOverlayLabelPanel_rightPadding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static statusIconOverlay_iconOverlayLabelPanel_rightPadding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static statusIconOverlay_iconOverlayLabelPanel_rightMarginPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static statusIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "update_icon" | "new_offer_icon">;
    static statusIconPanel_newOfferIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static statusIconPanel_updateIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promptIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static upArrowIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static plusIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bangIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static userIconSmall<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static userIconHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadStoreHelper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$gamepad_store_helper_button">;
    static gamepadStoreHelper_$gamepadStoreHelperButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseCoinsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "plus_button">;
    static purchaseCoinsPanel_plusButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "inventory_button">;
    static inventoryPanel_inventoryButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressLoadingSpinner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "store_failure_code" | "stack_panel" | "centerer" | "progress_loading_outline">;
    static progressLoading_centerer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_spinner">;
    static progressLoading_centerer_progressLoadingSpinner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressLoading_progressLoadingOutline<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressLoading_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "image" | "top_panel">;
    static progressLoading_stackPanel_topPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "store_failure_text" | "error_glyph_panel">;
    static progressLoading_stackPanel_topPanel_errorGlyphPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "error_image">;
    static progressLoading_stackPanel_topPanel_errorGlyphPanel_errorImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressLoading_stackPanel_topPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressLoading_stackPanel_topPanel_storeFailureText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressLoading_stackPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressLoading_stackPanel_image<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressLoading_storeFailureCode<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeEmptyProgressBarIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeFullProgressBarIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeProgressBarNub<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeProgressBarIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "empty_progress_bar_icon" | "progress_percent_panel">;
    static storeProgressBarIcon_emptyProgressBarIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeProgressBarIcon_progressPercentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "full_progress_bar_icon" | "progress_bar_nub">;
    static storeProgressBarIcon_progressPercentPanel_fullProgressBarIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeProgressBarIcon_progressPercentPanel_progressBarNub<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenContentsWithGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "dialog_panel" | "gamepad_helpers_panel">;
    static screenContentsWithGamepadHelpers_dialogPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dialog">;
    static screenContentsWithGamepadHelpers_dialogPanel_dialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenContentsWithGamepadHelpers_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenContentsWithGamepadHelpers_gamepadHelpersPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helpers_a_and_b">;
    static screenContentsWithGamepadHelpers_gamepadHelpersPanel_gamepadHelpersAAndB<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textStrikeThrough<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static markdownBanner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static markdownTriangle<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static timerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "timer">;
    static timerPanel_timer<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferTypeIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonPackIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonPackSmallIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourcePackIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourcePackSmallIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinpackIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinpackSmallIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSmallIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mashupIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mashupSmallIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static personaIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static personaSmallIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static smallPaddingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourcePackSmallIconWithBuffer<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "resource_pack_small_icon" | "small_padding_panel">;
    static resourcePackSmallIconWithBuffer_resourcePackSmallIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourcePackSmallIconWithBuffer_smallPaddingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonPackSmallIconWithBuffer<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "addon_pack_small_icon" | "small_padding_panel">;
    static addonPackSmallIconWithBuffer_addonPackSmallIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonPackSmallIconWithBuffer_smallPaddingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinpackSmallIconWithBuffer<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "skinpack_small_icon" | "small_padding_panel">;
    static skinpackSmallIconWithBuffer_skinpackSmallIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinpackSmallIconWithBuffer_smallPaddingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSmallIconWithBuffer<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "world_small_icon" | "small_padding_panel">;
    static worldSmallIconWithBuffer_worldSmallIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldSmallIconWithBuffer_smallPaddingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mashupSmallIconWithBuffer<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "mashup_small_icon" | "small_padding_panel">;
    static mashupSmallIconWithBuffer_mashupSmallIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mashupSmallIconWithBuffer_smallPaddingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static personaSmallIconWithBuffer<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "persona_small_icon" | "small_padding_panel">;
    static personaSmallIconWithBuffer_personaSmallIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static personaSmallIconWithBuffer_smallPaddingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsBannerIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBannerIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbExpiration<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "contents">;
    static csbExpiration_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbExpiration_contents<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "text_panel" | "pad_0" | "csb_icon">;
    static csbExpiration_contents_csbIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbExpiration_contents_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbExpiration_contents_textPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static csbExpiration_contents_textPanel_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static packIconStack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "pack_icon_stack_factory">;
    static packIconStack_packIconStackFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packIconStackFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static markdownBackground<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "banner_panel" | "triangle_panel">;
    static markdownBackground_bannerPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "banner">;
    static markdownBackground_bannerPanel_banner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "banner_content_stack_panel">;
    static markdownBackground_bannerPanel_banner_bannerContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "markdown_panel" | "timer_panel" | "pack_icon_panel">;
    static markdownBackground_bannerPanel_banner_bannerContentStackPanel_timerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static markdownBackground_bannerPanel_banner_bannerContentStackPanel_packIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "pack_icon_stack">;
    static markdownBackground_bannerPanel_banner_bannerContentStackPanel_packIconPanel_packIconStack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static markdownBackground_bannerPanel_banner_bannerContentStackPanel_markdownPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "markdown_label">;
    static markdownBackground_bannerPanel_banner_bannerContentStackPanel_markdownPanel_markdownLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static markdownBackground_trianglePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "triangle">;
    static markdownBackground_trianglePanel_triangle<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeTopBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeTopBarFiller<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static directionButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$direction_gamepad_button_helper" | "chevron_image">;
    static directionButtonPanel_chevronImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static directionButtonPanel_$directionGamepadButtonHelper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cyclePackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cyclePackLeftButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cyclePackRightButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static restorePurchases<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static backContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "back_button">;
    static backContentPanel_backButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static unlockWithCoinsButtonStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "coin_panel" | "unlock_text">;
    static unlockWithCoinsButtonStackPanel_coinPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "coin">;
    static unlockWithCoinsButtonStackPanel_coinPanel_coin<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static unlockWithCoinsButtonStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static unlockWithCoinsButtonStackPanel_unlockText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeDialogWithCoinHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeCoinsTitleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchHeaderStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_y_alignment_hack" | "search_header_text_box_panel" | "store_layout_search_button" | "padding0">;
    static searchHeaderStack_gamepadHelperYAlignmentHack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_y">;
    static searchHeaderStack_gamepadHelperYAlignmentHack_gamepadHelperY<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchHeaderStack_searchHeaderTextBoxPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "clear_button" | "search_header_text_box">;
    static searchHeaderStack_searchHeaderTextBoxPanel_searchHeaderTextBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchHeaderStack_searchHeaderTextBoxPanel_clearButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchHeaderStack_storeLayoutSearchButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchHeaderStack_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeHeaderWithCoins<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_bar" | "child_control">;
    static storeHeaderWithCoins_topBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "title_stack_panel">;
    static storeHeaderWithCoins_topBar_titleStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding1" | "padding2" | "padding3" | "padding4" | "padding5" | "back_button_content_panel" | "search_header_stack" | "header_title_panel" | "status_and_coins">;
    static storeHeaderWithCoins_topBar_titleStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeHeaderWithCoins_topBar_titleStackPanel_backButtonContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeHeaderWithCoins_topBar_titleStackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeHeaderWithCoins_topBar_titleStackPanel_headerTitlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeHeaderWithCoins_topBar_titleStackPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeHeaderWithCoins_topBar_titleStackPanel_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeHeaderWithCoins_topBar_titleStackPanel_statusAndCoins<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeHeaderWithCoins_topBar_titleStackPanel_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeHeaderWithCoins_topBar_titleStackPanel_searchHeaderStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeHeaderWithCoins_childControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static statusWithCoins<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding1" | "inventory_panel" | "padding0" | "coin_balance_panel">;
    static statusWithCoins_inventoryPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_button">;
    static statusWithCoins_inventoryPanel_inventoryButton<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static statusWithCoins_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static statusWithCoins_coinBalancePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "coin_balance_panel">;
    static statusWithCoins_coinBalancePanel_coinBalancePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static statusWithCoins_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static coinsWithTitle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_panel" | "coin_balance_panel">;
    static coinsWithTitle_coinBalancePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static coinsWithTitle_titlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static walletButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "plus_image" | "purchase_coin_panel_alignment_hack" | "gamepad_helper_x_alignment_hack">;
    static walletButtonPanel_purchaseCoinPanelAlignmentHack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "purchase_coin_panel">;
    static walletButtonPanel_purchaseCoinPanelAlignmentHack_purchaseCoinPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static walletButtonPanel_plusImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static walletButtonPanel_gamepadHelperXAlignmentHack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_x">;
    static walletButtonPanel_gamepadHelperXAlignmentHack_gamepadHelperX<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static coinBalancePanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "coin_purchase_in_progress_panel" | "horizontal_coin_stack">;
    static coinBalancePanel_coinPurchaseInProgressPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "coin_purchase_in_progress">;
    static coinBalancePanel_coinPurchaseInProgressPanel_coinPurchaseInProgress<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static coinBalancePanel_horizontalCoinStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "coin_icon" | "small_filler" | "coin_text_holder">;
    static coinBalancePanel_horizontalCoinStack_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static coinBalancePanel_horizontalCoinStack_coinIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static coinBalancePanel_horizontalCoinStack_smallFiller<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static coinBalancePanel_horizontalCoinStack_coinTextHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "coin_balance_text">;
    static coinBalancePanel_horizontalCoinStack_coinTextHolder_coinBalanceText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static myAccountButtonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "my_account_content">;
    static myAccountButtonContent_myAccountContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "user_icon" | "my_account_label_panel">;
    static myAccountButtonContent_myAccountContent_userIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static myAccountButtonContent_myAccountContent_myAccountLabelPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "my_account_center_label">;
    static myAccountButtonContent_myAccountContent_myAccountLabelPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static myAccountButtonContent_myAccountContent_myAccountLabelPanel_myAccountCenterLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "my_account_label">;
    static myAccountButtonContent_myAccountContent_myAccountLabelPanel_myAccountCenterLabel_myAccountLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "inventory_button">;
    static inventoryButtonPanel_inventoryButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "status_panel">;
    static inventoryButtonPanel_inventoryButton_statusPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "my_content_button" | "updates_with_bevel" | "label_alignment_pannel">;
    static inventoryButton_myContentButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "library_icon" | "library_icon_bevel">;
    static inventoryButton_myContentButton_libraryIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryButton_myContentButton_libraryIconBevel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryButton_updatesWithBevel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "update_glyph" | "updates_bevel">;
    static inventoryButton_updatesWithBevel_updateGlyph<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryButton_updatesWithBevel_updatesBevel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryButton_labelAlignmentPannel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label_panel">;
    static inventoryButton_labelAlignmentPannel_labelPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "inventory_label">;
    static inventoryButton_labelAlignmentPannel_labelPanel_inventoryLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "disconnected_label" | "xbl_icon" | "error_icon_panel">;
    static xblButtonContent_xblIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblButtonContent_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblButtonContent_disconnectedLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblButtonContent_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblButtonContent_errorIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "error_icon">;
    static xblButtonContent_errorIconPanel_errorIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static disclaimerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "legal_text_label">;
    static disclaimerPanel_legalTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static greyBarPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad" | "color_panel">;
    static greyBarPanel_colorPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "grey_bar" | "green_bar">;
    static greyBarPanel_colorPanel_greyBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static greyBarPanel_colorPanel_greenBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static greyBarPanel_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabNamePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "button_panel" | "pad_1" | "bar_panel">;
    static tabNamePanel_barPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "green_bar">;
    static tabNamePanel_barPanel_greenBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabNamePanel_buttonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tab_name_button_grey" | "tab_name_button_white">;
    static tabNamePanel_buttonPanel_tabNameButtonGrey<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabNamePanel_buttonPanel_tabNameButtonWhite<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabNamePanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferItemTitlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_title">;
    static storeOfferItemTitlePanel_offerTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferItemCreatorPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "creator_label" | "pack_icon_panel">;
    static storeOfferItemCreatorPanel_packIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "pack_icon_stack">;
    static storeOfferItemCreatorPanel_packIconPanel_packIconStack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferItemCreatorPanel_creatorLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferRatings<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "rating_text_panel">;
    static storeOfferRatings_ratingTextPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreOfferPriceInfoPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "sales_banner">;
    static verticalStoreOfferPriceInfoPanel_salesBanner<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "markdown_stack_panels" | "store_offer_prompt_panel" | "padding_to_right">;
    static verticalStoreOfferPriceInfoPanel_salesBanner_markdownStackPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "markdown_panel" | "padding_markdown_panel_right">;
    static verticalStoreOfferPriceInfoPanel_salesBanner_markdownStackPanels_markdownPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreOfferPriceInfoPanel_salesBanner_markdownStackPanels_paddingMarkdownPanelRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreOfferPriceInfoPanel_salesBanner_storeOfferPromptPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_status_text">;
    static verticalStoreOfferPriceInfoPanel_salesBanner_storeOfferPromptPanel_offerStatusText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreOfferPriceInfoPanel_salesBanner_paddingToRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferPriceInfoPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "sales_banner">;
    static storeOfferPriceInfoPanel_salesBanner<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_3" | "coin_panel" | "offer_prompt_panel" | "sales_markdown_percentage_panel" | "fill_panel_with_markdown">;
    static storeOfferPriceInfoPanel_salesBanner_salesMarkdownPercentagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferPriceInfoPanel_salesBanner_fillPanelWithMarkdown<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "markdown_panel" | "padding_markdown_panel_right" | "fill_markdown_panel_left">;
    static storeOfferPriceInfoPanel_salesBanner_fillPanelWithMarkdown_fillMarkdownPanelLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferPriceInfoPanel_salesBanner_fillPanelWithMarkdown_markdownPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferPriceInfoPanel_salesBanner_fillPanelWithMarkdown_paddingMarkdownPanelRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferPriceInfoPanel_salesBanner_coinPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_coin_icon">;
    static storeOfferPriceInfoPanel_salesBanner_coinPanel_offerCoinIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferPriceInfoPanel_salesBanner_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferPriceInfoPanel_salesBanner_offerPromptPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferSalesMarkdownPercentagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "markdown_background">;
    static storeOfferSalesMarkdownPercentagePanel_markdownBackground<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferPromptPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_status_text">;
    static storeOfferPromptPanel_offerStatusText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static featuredKeyArt<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bg" | "focus_border">;
    static featuredKeyArt_bg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "progress_loading" | "new_offer_icon" | "featured_key_art">;
    static featuredKeyArt_bg_featuredKeyArt<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static featuredKeyArt_bg_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static featuredKeyArt_bg_newOfferIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static featuredKeyArt_focusBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pricePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "price_label_panel" | "featured_icon_panel">;
    static pricePanel_featuredIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "featured_offer_coin_icon">;
    static pricePanel_featuredIconPanel_featuredOfferCoinIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pricePanel_priceLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "price">;
    static pricePanel_priceLabelPanel_price<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static pricePanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalPadding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalPadding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlVerticalPaddingFill<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static footer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "restore_purchases">;
    static footer_restorePurchases<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeSectionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "store_section_panel_outline" | "section_panel">;
    static storeSectionPanel_storeSectionPanelOutline<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeSectionPanel_sectionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "header" | "section_panel">;
    static storeSectionPanel_sectionPanel_header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeSectionPanel_sectionPanel_sectionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "$store_section_panel_name">;
    static storeSectionPanel_sectionPanel_sectionPanel_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeSectionPanel_sectionPanel_sectionPanel_$storeSectionPanelName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeSectionFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rtxLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "banner">;
    static rtxLabel_banner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static rtxLabel_banner_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static subscriptionChevron<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "subscription_chevron_panel">;
    static subscriptionChevron_subscriptionChevronPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "csb_chevron" | "sales_banner_background">;
    static subscriptionChevron_subscriptionChevronPanel_csbChevron<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static subscriptionChevron_subscriptionChevronPanel_salesBannerBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBanner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "banner">;
    static csbBanner_banner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static paginationContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_left" | "first_page_button" | "pagination_middle_buttons_panel" | "padding_right_fill" | "go_to_top_button">;
    static paginationContentPanel_paddingLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paginationContentPanel_firstPageButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static paginationContentPanel_paginationMiddleButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paginationContentPanel_paddingRightFill<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paginationContentPanel_goToTopButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static paginationPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_padding" | "bottom_padding" | "pagination_content">;
    static paginationPanel_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paginationPanel_paginationContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paginationPanel_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridPanelContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider" | "header_centerer_panel" | "store_offer_grid_factory" | "pagination_centerer">;
    static storeOfferGridPanelContent_headerCentererPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridPanelContent_storeOfferGridFactory<T extends Types = Types.CollectionPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridPanelContent_paginationCenterer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridPanelContent_divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paginationTopButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top_button_image">;
    static paginationTopButtonPanel_topButtonImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static paginationMiddleButtonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "previous_page_button" | "current_page_number_panel" | "next_page_button">;
    static paginationMiddleButtonsPanel_previousPageButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static paginationMiddleButtonsPanel_currentPageNumberPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "current_page_number">;
    static paginationMiddleButtonsPanel_currentPageNumberPanel_currentPageNumber<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static paginationMiddleButtonsPanel_nextPageButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreOfferGridPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "header" | "padding_0" | "divider" | "centering_panel">;
    static verticalStoreOfferGridPanel_header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreOfferGridPanel_centeringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "vertical_store_offer_grid_content">;
    static verticalStoreOfferGridPanel_centeringPanel_verticalStoreOfferGridContent<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreOfferGridPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreOfferGridPanel_divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static carouselRowPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_padding" | "bottom_padding" | "divider_panel" | "top_panel" | "bottom_panel" | "middle_panel">;
    static carouselRowPanel_topPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad_0" | "tab_names_factory_panel">;
    static carouselRowPanel_topPanel_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static carouselRowPanel_topPanel_tabNamesFactoryPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static carouselRowPanel_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static carouselRowPanel_middlePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_button_panel" | "right_button_panel" | "main_panel_factory">;
    static carouselRowPanel_middlePanel_leftButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left_bumper" | "left_button">;
    static carouselRowPanel_middlePanel_leftButtonPanel_leftButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static carouselRowPanel_middlePanel_leftButtonPanel_leftBumper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static carouselRowPanel_middlePanel_mainPanelFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static carouselRowPanel_middlePanel_rightButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "right_bumper" | "right_button">;
    static carouselRowPanel_middlePanel_rightButtonPanel_rightButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static carouselRowPanel_middlePanel_rightButtonPanel_rightBumper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static carouselRowPanel_bottomPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "grey_bar_factory_panel">;
    static carouselRowPanel_bottomPanel_greyBarFactoryPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static carouselRowPanel_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static carouselRowPanel_dividerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "divider">;
    static carouselRowPanel_dividerPanel_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static carouselFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroRowL2Panel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "header" | "padding_0" | "divider" | "centering_panel">;
    static heroRowL2Panel_header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroRowL2Panel_centeringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "l2_featured_stack">;
    static heroRowL2Panel_centeringPanel_l2FeaturedStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "padding_2" | "padding_3" | "featured_item_1" | "featured_item_2" | "featured_item_3">;
    static heroRowL2Panel_centeringPanel_l2FeaturedStack_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroRowL2Panel_centeringPanel_l2FeaturedStack_featuredItem1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroRowL2Panel_centeringPanel_l2FeaturedStack_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroRowL2Panel_centeringPanel_l2FeaturedStack_featuredItem2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroRowL2Panel_centeringPanel_l2FeaturedStack_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroRowL2Panel_centeringPanel_l2FeaturedStack_featuredItem3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroRowL2Panel_centeringPanel_l2FeaturedStack_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroRowL2Panel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroRowL2Panel_divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bladeRowKeyArt<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "blade_row_key_art_image">;
    static bladeRowKeyArt_bladeRowKeyArtImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "key_art_border">;
    static bladeRowKeyArt_bladeRowKeyArtImage_keyArtBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static oneKeyArtScreenshot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static oneKeyArtScreenshotPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "blade_offer_frame">;
    static oneKeyArtScreenshotPanel_bladeOfferFrame<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "one_key_art_screenshot">;
    static oneKeyArtScreenshotPanel_bladeOfferFrame_oneKeyArtScreenshot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "one_key_art_frame">;
    static oneKeyArtScreenshotPanel_bladeOfferFrame_oneKeyArtScreenshot_oneKeyArtFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsGrid<T extends Types = Types.CollectionPanel>(properties?: PropertiesType[T]): Modify<T, "screenshot_1" | "screenshot_2" | "screenshot_3" | "screenshot_4">;
    static screenshotsGrid_screenshot1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsGrid_screenshot2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsGrid_screenshot3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsGrid_screenshot4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bladeOfferDetailsTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bladeOfferSaleMarkdown<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bladeOfferDescriptionDetails<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "blade_title_stack" | "blade_offer_creator_label" | "blade_offer_description_padding_2" | "ratings_and_coins" | "blade_offer_description_padding_3">;
    static bladeOfferDescriptionDetails_bladeTitleStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "blade_title">;
    static bladeOfferDescriptionDetails_bladeTitleStack_bladeTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bladeOfferDescriptionDetails_bladeOfferCreatorLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bladeOfferDescriptionDetails_bladeOfferDescriptionPadding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bladeOfferDescriptionDetails_ratingsAndCoins<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "price_panel" | "blade_sales_markdown_percentage_panel" | "ratings_panel" | "blade_rating_count_panel" | "fill_padding" | "blade_offer_price_markdown_panel" | "price_panel_padding_right">;
    static bladeOfferDescriptionDetails_ratingsAndCoins_bladeSalesMarkdownPercentagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "blade_markdown_background">;
    static bladeOfferDescriptionDetails_ratingsAndCoins_bladeSalesMarkdownPercentagePanel_bladeMarkdownBackground<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bladeOfferDescriptionDetails_ratingsAndCoins_ratingsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "blade_ratings">;
    static bladeOfferDescriptionDetails_ratingsAndCoins_ratingsPanel_bladeRatings<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bladeOfferDescriptionDetails_ratingsAndCoins_bladeRatingCountPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bladeOfferDescriptionDetails_ratingsAndCoins_fillPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bladeOfferDescriptionDetails_ratingsAndCoins_bladeOfferPriceMarkdownPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bladeOfferDescriptionDetails_ratingsAndCoins_pricePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "price">;
    static bladeOfferDescriptionDetails_ratingsAndCoins_pricePanel_price<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bladeOfferDescriptionDetails_ratingsAndCoins_pricePanelPaddingRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bladeOfferDescriptionDetails_bladeOfferDescriptionPadding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsAndOfferDetailsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "blade_offer_screenshots_grid" | "blade_offer_description_area">;
    static screenshotsAndOfferDetailsPanel_bladeOfferScreenshotsGrid<T extends Types = Types.CollectionPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsAndOfferDetailsPanel_bladeOfferDescriptionArea<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "blade_offer_description_border" | "hero_blade_offer_description_details">;
    static screenshotsAndOfferDetailsPanel_bladeOfferDescriptionArea_bladeOfferDescriptionBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsAndOfferDetailsPanel_bladeOfferDescriptionArea_heroBladeOfferDescriptionDetails<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bladeRowFeaturedPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "blade_row_featured_key_art" | "blade_offer_screenshots_and_details_panel">;
    static bladeRowFeaturedPanel_bladeRowFeaturedKeyArt<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bladeRowFeaturedPanel_bladeOfferScreenshotsAndDetailsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transparentContentButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroBladeRowPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "blade_row_transparent_button">;
    static heroBladeRowPanel_bladeRowTransparentButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroRowPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "header" | "padding_0" | "divider" | "centering_panel">;
    static heroRowPanel_header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroRowPanel_centeringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "featured_stack">;
    static heroRowPanel_centeringPanel_featuredStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_0" | "hero_offer" | "hero_offer_grid">;
    static heroRowPanel_centeringPanel_featuredStack_heroOffer<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroRowPanel_centeringPanel_featuredStack_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroRowPanel_centeringPanel_featuredStack_heroOfferGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroRowPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroRowPanel_divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOffer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "rtx_label" | "featured_key_art" | "offer_description_area">;
    static heroOffer_featuredKeyArt<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOffer_rtxLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOffer_offerDescriptionArea<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "hero_offer_description_details">;
    static heroOffer_offerDescriptionArea_heroOfferDescriptionDetails<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferDetailsTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferDescriptionDetails<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "progress" | "creator_label" | "padding_1" | "padding_0" | "padding_5" | "hero_title_stack" | "durable_offer_info_panel">;
    static heroOfferDescriptionDetails_heroTitleStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title">;
    static heroOfferDescriptionDetails_heroTitleStack_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferDescriptionDetails_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferDescriptionDetails_progress<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferDescriptionDetails_creatorLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferDescriptionDetails_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferDescriptionDetails_durableOfferInfoPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offer_status_panel">;
    static heroOfferDescriptionDetails_durableOfferInfoPanel_offerStatusPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "price_panel" | "pack_icon_panel" | "sales_markdown_percentage_panel" | "ratings_panel" | "fill_padding" | "subscription_panel" | "rating_count_panel" | "offer_price_markdown_panel">;
    static heroOfferDescriptionDetails_durableOfferInfoPanel_offerStatusPanel_subscriptionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferDescriptionDetails_durableOfferInfoPanel_offerStatusPanel_salesMarkdownPercentagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "markdown_background">;
    static heroOfferDescriptionDetails_durableOfferInfoPanel_offerStatusPanel_salesMarkdownPercentagePanel_markdownBackground<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferDescriptionDetails_durableOfferInfoPanel_offerStatusPanel_ratingsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "ratings">;
    static heroOfferDescriptionDetails_durableOfferInfoPanel_offerStatusPanel_ratingsPanel_ratings<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferDescriptionDetails_durableOfferInfoPanel_offerStatusPanel_ratingCountPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferDescriptionDetails_durableOfferInfoPanel_offerStatusPanel_packIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "pack_icon_stack">;
    static heroOfferDescriptionDetails_durableOfferInfoPanel_offerStatusPanel_packIconPanel_packIconStack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferDescriptionDetails_durableOfferInfoPanel_offerStatusPanel_fillPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferDescriptionDetails_durableOfferInfoPanel_offerStatusPanel_offerPriceMarkdownPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferDescriptionDetails_durableOfferInfoPanel_offerStatusPanel_pricePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "price">;
    static heroOfferDescriptionDetails_durableOfferInfoPanel_offerStatusPanel_pricePanel_price<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferDescriptionDetails_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferDownloadProgress<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label" | "bar">;
    static heroOfferDownloadProgress_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferDownloadProgress_bar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingTextPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_padding" | "middle_padding" | "star_panel" | "rating_label">;
    static ratingTextPanel_leftPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingTextPanel_starPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "rating_star">;
    static ratingTextPanel_starPanel_ratingStar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingTextPanel_middlePadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingTextPanel_ratingLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static ratingsDescription<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "rating_text_panel">;
    static ratingsDescription_ratingTextPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeRatingCountPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "rating_count_text">;
    static storeRatingCountPanel_ratingCountText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_0" | "row_1" | "row_2">;
    static heroOfferGrid_row1<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_0" | "offer_1" | "offer_2">;
    static heroOfferGrid_row1_offer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferGrid_row1_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferGrid_row1_offer2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferGrid_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferGrid_row2<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_0" | "offer_1" | "offer_2">;
    static heroOfferGrid_row2_offer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferGrid_row2_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferGrid_row2_offer2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static offerDownloadProgress<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label" | "bar">;
    static offerDownloadProgress_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static offerDownloadProgress_bar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannerButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlTextAlignedPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlTextMinecraftTenAlignedPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlContentAlignedPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "control" | "left__padding_panel" | "right_padding_panel">;
    static sdlContentAlignedPanel_left_paddingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlContentAlignedPanel_control<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlContentAlignedPanel_rightPaddingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlAlignedText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlAlignedMinecraftTenText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentOfferKeyArt<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalContentOfferHeader<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "header">;
    static verticalContentOfferHeader_header<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalContentOfferPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalOfferGridPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static offerContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_item">;
    static offerContent_offerItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalOfferContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_item">;
    static verticalOfferContent_offerItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalCoinOfferContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_item">;
    static verticalCoinOfferContent_offerItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferKeyArt<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridShowMore<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "frame" | "offer_button">;
    static storeOfferGridShowMore_frame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "title">;
    static storeOfferGridShowMore_frame_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridShowMore_offerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "pressed" | "hover">;
    static storeOfferGridShowMore_offerButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "key_art_size_panel">;
    static storeOfferGridShowMore_offerButton_hover_keyArtSizePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridShowMore_offerButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "key_art_size_panel">;
    static storeOfferGridShowMore_offerButton_pressed_keyArtSizePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static personaGridShowMore<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static rowOfferSaleMarkdown<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static heroOfferSaleMarkdown<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static offerPriceMarkdownPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_price">;
    static offerPriceMarkdownPanel_offerPrice<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, "text_strike_through">;
    static offerPriceMarkdownPanel_offerPrice_textStrikeThrough<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferKeyArtFrame<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading" | "key_art">;
    static storeOfferKeyArtFrame_keyArt<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "csb_expiration_banner" | "key_art_frame">;
    static storeOfferKeyArtFrame_keyArt_keyArtFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferKeyArtFrame_keyArt_csbExpirationBanner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferKeyArtFrame_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreOfferGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "frame" | "dark_frame">;
    static verticalStoreOfferGridItem_frame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "offer_button" | "horizontal_stack_panel">;
    static verticalStoreOfferGridItem_frame_horizontalStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreOfferGridItem_frame_offerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreOfferGridItem_darkFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "offer_button" | "horizontal_stack_panel">;
    static verticalStoreOfferGridItem_darkFrame_horizontalStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreOfferGridItem_darkFrame_offerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreOfferGridInsideFrame<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "key_art_size_panel" | "offer_details_general_panel">;
    static verticalStoreOfferGridInsideFrame_keyArtSizePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "key_art" | "key_art_frame">;
    static verticalStoreOfferGridInsideFrame_keyArtSizePanel_keyArtFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreOfferGridInsideFrame_keyArtSizePanel_keyArt<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreOfferGridInsideFrame_offerDetailsGeneralPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "general_offer_details_stack_panel">;
    static verticalStoreOfferGridInsideFrame_offerDetailsGeneralPanel_generalOfferDetailsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title_panel_with_padding" | "creator_label_panel_with_padding" | "ratings_and_cost_pannel_with_padding">;
    static verticalStoreOfferGridInsideFrame_offerDetailsGeneralPanel_generalOfferDetailsStackPanel_titlePanelWithPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title">;
    static verticalStoreOfferGridInsideFrame_offerDetailsGeneralPanel_generalOfferDetailsStackPanel_titlePanelWithPadding_title<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreOfferGridInsideFrame_offerDetailsGeneralPanel_generalOfferDetailsStackPanel_creatorLabelPanelWithPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "creator_label">;
    static verticalStoreOfferGridInsideFrame_offerDetailsGeneralPanel_generalOfferDetailsStackPanel_creatorLabelPanelWithPadding_creatorLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreOfferGridInsideFrame_offerDetailsGeneralPanel_generalOfferDetailsStackPanel_ratingsAndCostPannelWithPadding<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "ratings" | "rating_and_price_padding" | "offer_price_info_panel" | "right_side_padding">;
    static verticalStoreOfferGridInsideFrame_offerDetailsGeneralPanel_generalOfferDetailsStackPanel_ratingsAndCostPannelWithPadding_ratings<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreOfferGridInsideFrame_offerDetailsGeneralPanel_generalOfferDetailsStackPanel_ratingsAndCostPannelWithPadding_ratingAndPricePadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreOfferGridInsideFrame_offerDetailsGeneralPanel_generalOfferDetailsStackPanel_ratingsAndCostPannelWithPadding_offerPriceInfoPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreOfferGridInsideFrame_offerDetailsGeneralPanel_generalOfferDetailsStackPanel_ratingsAndCostPannelWithPadding_rightSidePadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreCoinOfferGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "frame" | "dark_frame">;
    static verticalStoreCoinOfferGridItem_frame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "horizontal_stack_panel">;
    static verticalStoreCoinOfferGridItem_frame_horizontalStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreCoinOfferGridItem_darkFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "offer_button" | "horizontal_stack_panel">;
    static verticalStoreCoinOfferGridItem_darkFrame_horizontalStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreCoinOfferGridItem_darkFrame_offerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalCoinOfferGridInsideFrame<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "coin_panel" | "key_art_size_panel" | "Minecoins_panel">;
    static verticalCoinOfferGridInsideFrame_keyArtSizePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "key_art" | "key_art_frame">;
    static verticalCoinOfferGridInsideFrame_keyArtSizePanel_keyArtFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalCoinOfferGridInsideFrame_keyArtSizePanel_keyArt<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalCoinOfferGridInsideFrame_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalCoinOfferGridInsideFrame_coinPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_coin_icon">;
    static verticalCoinOfferGridInsideFrame_coinPanel_offerCoinIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalCoinOfferGridInsideFrame_MinecoinsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "minecoins_vert_stack_panel">;
    static verticalCoinOfferGridInsideFrame_MinecoinsPanel_minecoinsVertStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title_panel_with_padding" | "minecoins_panel_with_padding">;
    static verticalCoinOfferGridInsideFrame_MinecoinsPanel_minecoinsVertStackPanel_minecoinsPanelWithPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "minecoins_prompt_panel">;
    static verticalCoinOfferGridInsideFrame_MinecoinsPanel_minecoinsVertStackPanel_minecoinsPanelWithPadding_minecoinsPromptPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "minecoins_offer_status_text">;
    static verticalCoinOfferGridInsideFrame_MinecoinsPanel_minecoinsVertStackPanel_minecoinsPanelWithPadding_minecoinsPromptPanel_minecoinsOfferStatusText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalCoinOfferGridInsideFrame_MinecoinsPanel_minecoinsVertStackPanel_titlePanelWithPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title">;
    static verticalCoinOfferGridInsideFrame_MinecoinsPanel_minecoinsVertStackPanel_titlePanelWithPadding_title<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static offerPromptPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_3" | "coin_panel" | "offer_status_text_panel">;
    static offerPromptPanel_coinPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_coin_icon">;
    static offerPromptPanel_coinPanel_offerCoinIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static offerPromptPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static offerPromptPanel_offerStatusTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_status_text">;
    static offerPromptPanel_offerStatusTextPanel_offerStatusText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "frame">;
    static storeOfferGridItem_frame<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress" | "progress_loading" | "key_art" | "durable_offer_info_panel" | "offer_button">;
    static storeOfferGridItem_frame_keyArt<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "key_art_frame" | "csb_plus_expiration_banner">;
    static storeOfferGridItem_frame_keyArt_keyArtFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_keyArt_csbPlusExpirationBanner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_progress<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offer_status_panel" | "title_label_padding_stack">;
    static storeOfferGridItem_frame_durableOfferInfoPanel_titleLabelPaddingStack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label_vert_stack_panel" | "no_durable_status_padding">;
    static storeOfferGridItem_frame_durableOfferInfoPanel_titleLabelPaddingStack_titleLabelVertStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title" | "creator_label" | "offer_price_info_panel">;
    static storeOfferGridItem_frame_durableOfferInfoPanel_titleLabelPaddingStack_titleLabelVertStackPanel_title<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel_titleLabelPaddingStack_titleLabelVertStackPanel_creatorLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel_titleLabelPaddingStack_titleLabelVertStackPanel_offerPriceInfoPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel_titleLabelPaddingStack_noDurableStatusPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_2" | "padding_6" | "markdown_panel" | "ratings" | "rtx_label" | "offer_prompt_panel" | "sales_banner" | "timer_panel" | "pack_icon_panel" | "padding_markdown_panel_right" | "fill_markdown_panel_left" | "subscription_panel" | "rating_count_panel">;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_rtxLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_subscriptionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_salesBanner<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "sales_markdown_percentage_panel">;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_salesBanner_salesMarkdownPercentagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "markdown_background">;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_salesBanner_salesMarkdownPercentagePanel_markdownBackground<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_ratings<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_ratingCountPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_packIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "pack_icon_stack">;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_packIconPanel_packIconStack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_fillMarkdownPanelLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_markdownPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_paddingMarkdownPanelRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_offerPromptPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_timerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "sale_timer">;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_timerPanel_saleTimer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_offerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static thumbnailOnlyOffer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "frame">;
    static thumbnailOnlyOffer_frame<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "key_art" | "offer_button">;
    static thumbnailOnlyOffer_frame_keyArt<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "offer_coin_icon" | "key_art_frame">;
    static thumbnailOnlyOffer_frame_keyArt_keyArtFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static thumbnailOnlyOffer_frame_keyArt_offerCoinIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static thumbnailOnlyOffer_frame_offerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeSectionHeaderLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static personaStoreRowOffer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "persona_offer">;
    static personaStoreRowOffer_personaOffer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static thumnailOnlyRowOffer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "generic_store_offer">;
    static thumnailOnlyRowOffer_genericStoreOffer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static genericStoreRowOfferPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "generic_store_offer">;
    static genericStoreRowOfferPanel_genericStoreOffer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeRowShowMoreButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "show_more_button">;
    static storeRowShowMoreButtonPanel_showMoreButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static personaShowMoreButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "show_more_button">;
    static personaShowMoreButtonPanel_showMoreButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static personaGridPanelStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "default_piece_button" | "persona_grid_panel">;
    static personaGridPanelStack_defaultPieceButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static personaGridPanelStack_personaGridPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static personaGridPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "persona_offer_grid">;
    static personaGridPanel_personaOfferGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridFactory<T extends Types = Types.CollectionPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nonCollectionItemHorizontalPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalStoreOfferRowFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recentlyViewedRowPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static staticOfferRowPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "store_row_dropdown_panel">;
    static staticOfferRowPanel_storeRowDropdownPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "store_row_section_panel">;
    static staticOfferRowPanel_storeRowDropdownPanel_storeRowSectionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeRowPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "store_row_dropdown_panel">;
    static storeRowPanel_storeRowDropdownPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "store_row_section_panel">;
    static storeRowPanel_storeRowDropdownPanel_storeRowSectionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreRowPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static styleHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "style_header">;
    static styleHeader_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static styleHeader_styleHeader<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static styleHeaderPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "row_header" | "row_carousel_padding">;
    static styleHeaderPanel_rowHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label_panel">;
    static styleHeaderPanel_rowHeader_labelPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "time_remaining_label" | "indent" | "row_header_label_centering_panel" | "on_sale_banner">;
    static styleHeaderPanel_rowHeader_labelPanel_indent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static styleHeaderPanel_rowHeader_labelPanel_rowHeaderLabelCenteringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "row_header_label">;
    static styleHeaderPanel_rowHeader_labelPanel_rowHeaderLabelCenteringPanel_rowHeaderLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static styleHeaderPanel_rowHeader_labelPanel_onSaleBanner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "padding_panel">;
    static styleHeaderPanel_rowHeader_labelPanel_onSaleBanner_paddingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "triangle" | "sales_row_header_label">;
    static styleHeaderPanel_rowHeader_labelPanel_onSaleBanner_paddingPanel_salesRowHeaderLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static styleHeaderPanel_rowHeader_labelPanel_onSaleBanner_paddingPanel_triangle<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static styleHeaderPanel_rowHeader_labelPanel_timeRemainingLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static styleHeaderPanel_rowCarouselPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeRowCycleButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cycle_button_panel">;
    static storeRowCycleButtonPanel_cycleButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "$cycle_button" | "page_indicator_panel">;
    static storeRowCycleButtonPanel_cycleButtonPanel_$cycleButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeRowCycleButtonPanel_cycleButtonPanel_pageIndicatorPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "page_indicator">;
    static storeRowCycleButtonPanel_cycleButtonPanel_pageIndicatorPanel_pageIndicator<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeRow<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider" | "carousel_panel">;
    static storeRow_carouselPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading" | "cycle_pack_horizontal_stack">;
    static storeRow_carouselPanel_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeRow_carouselPanel_cyclePackHorizontalStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "cycle_pack_left_button_panel" | "offer_grid_panel" | "cycle_pack_right_button_panel">;
    static storeRow_carouselPanel_cyclePackHorizontalStack_cyclePackLeftButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeRow_carouselPanel_cyclePackHorizontalStack_offerGridPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_grid">;
    static storeRow_carouselPanel_cyclePackHorizontalStack_offerGridPanel_offerGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeRow_carouselPanel_cyclePackHorizontalStack_cyclePackRightButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeRow_divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageIndicatorPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "first_of_three" | "second_of_three" | "third_of_three" | "first_of_two" | "second_of_two">;
    static pageIndicatorPanel_firstOfThree<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageIndicatorPanel_secondOfThree<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageIndicatorPanel_thirdOfThree<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageIndicatorPanel_firstOfTwo<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageIndicatorPanel_secondOfTwo<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pageIndicator<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_noStoreConnection<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_bg" | "popup_dialog_message" | "popup_dialog_middle_button">;
    static popupDialog_noStoreConnection_popupDialogBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_noStoreConnection_popupDialogMessage<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_noStoreConnection_popupDialogMiddleButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_restorePopup<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_bg" | "popup_dialog_message">;
    static popupDialog_restorePopup_popupDialogBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_restorePopup_popupDialogMessage<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_restoreFailed<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_bg" | "popup_dialog_message" | "popup_dialog_middle_button">;
    static popupDialog_restoreFailed_popupDialogBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_restoreFailed_popupDialogMessage<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static popupDialog_restoreFailed_popupDialogMiddleButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static suggestedContentOffersGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "frame">;
    static suggestedContentOffersGridItem_frame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "progress" | "progress_loading" | "key_art" | "offer_button" | "title_label_panel">;
    static suggestedContentOffersGridItem_frame_keyArt<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "key_art_frame">;
    static suggestedContentOffersGridItem_frame_keyArt_keyArtFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static suggestedContentOffersGridItem_frame_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static suggestedContentOffersGridItem_frame_progress<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static suggestedContentOffersGridItem_frame_titleLabelPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title" | "offer_type">;
    static suggestedContentOffersGridItem_frame_titleLabelPanel_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static suggestedContentOffersGridItem_frame_titleLabelPanel_offerType<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static suggestedContentOffersGridItem_frame_offerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "pressed" | "hover">;
    static suggestedContentOffersGridItem_frame_offerButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "key_art_size_panel">;
    static suggestedContentOffersGridItem_frame_offerButton_hover_keyArtSizePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "key_art_frame">;
    static suggestedContentOffersGridItem_frame_offerButton_hover_keyArtSizePanel_keyArtFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static suggestedContentOffersGridItem_frame_offerButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "key_art_size_panel">;
    static suggestedContentOffersGridItem_frame_offerButton_pressed_keyArtSizePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "key_art_frame">;
    static suggestedContentOffersGridItem_frame_offerButton_pressed_keyArtSizePanel_keyArtFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static suggestedContentOffersGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static moreSuggestedContentOffersButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static suggestedContentOffersPanelBase<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content" | "progress_loading">;
    static suggestedContentOffersPanelBase_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "suggested_content_offers_grid" | "more_suggested_content_offers_button">;
    static suggestedContentOffersPanelBase_content_suggestedContentOffersGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static suggestedContentOffersPanelBase_content_moreSuggestedContentOffersButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static suggestedContentOffersPanelBase_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static suggestedContentOffersPanel3x1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static suggestedContentOffersPanel4x1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchTextBoxPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "clear_button" | "search_text_box" | "loading_spinner">;
    static searchTextBoxPanel_searchTextBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchTextBoxPanel_clearButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchTextBoxPanel_loadingSpinner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offset_panel">;
    static searchLabelPanel_offsetPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static searchLabelPanel_offsetPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorTextPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "error_text_content">;
    static errorTextPanel_errorTextContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_padding" | "bottom_padding" | "label_panel">;
    static errorTextPanel_errorTextContent_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorTextPanel_errorTextContent_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorTextPanel_errorTextContent_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultsTextPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "results_panel">;
    static resultsTextPanel_resultsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_padding" | "bottom_padding" | "results_content">;
    static resultsTextPanel_resultsPanel_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultsTextPanel_resultsPanel_resultsContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label_panel" | "right_padding" | "mid_padding" | "results_close_centering_panel">;
    static resultsTextPanel_resultsPanel_resultsContent_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultsTextPanel_resultsPanel_resultsContent_midPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultsTextPanel_resultsPanel_resultsContent_resultsCloseCenteringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "results_close_button">;
    static resultsTextPanel_resultsPanel_resultsContent_resultsCloseCenteringPanel_resultsCloseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultsTextPanel_resultsPanel_resultsContent_rightPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultsTextPanel_resultsPanel_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterLogoContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "filter_logo_image" | "filter_count_label">;
    static filterLogoContentPanel_filterLogoImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterLogoContentPanel_filterCountLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterSortToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterSortSubmenuScrollingPanelSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "submenu_scrolling_panel">;
    static filterSortSubmenuScrollingPanelSection_submenuScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterSortGridPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "filter_sort_grid">;
    static filterSortGridPanel_filterSortGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortButtonContentPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchPanelFilter<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "search_text_box" | "filter_button" | "sort_button">;
    static searchPanelFilter_searchTextBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchPanelFilter_filterButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchPanelFilter_sortButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchResultsAndErrorStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "error_text_panel" | "mid_padding_2" | "results_text_panel" | "mid_padding_1">;
    static searchResultsAndErrorStack_midPadding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchResultsAndErrorStack_errorTextPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchResultsAndErrorStack_midPadding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchResultsAndErrorStack_resultsTextPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "search_panel_content">;
    static searchPanel_searchPanelContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "bottom_padding" | "search_text_box" | "content_between_searchbar_and_results" | "search_results_and_error_panel">;
    static searchPanel_searchPanelContent_searchTextBox<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchPanel_searchPanelContent_contentBetweenSearchbarAndResults<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchPanel_searchPanelContent_searchResultsAndErrorPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchPanel_searchPanelContent_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchAndOfferContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "search_and_offer_panel">;
    static searchAndOfferContent_searchAndOfferPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "search_and_offer_content">;
    static searchAndOfferContent_searchAndOfferPanel_searchAndOfferContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_padding" | "bottom_padding" | "search_panel" | "upper_section_panel" | "offer_content_panel">;
    static searchAndOfferContent_searchAndOfferPanel_searchAndOfferContent_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchAndOfferContent_searchAndOfferPanel_searchAndOfferContent_upperSectionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "upper_section">;
    static searchAndOfferContent_searchAndOfferPanel_searchAndOfferContent_upperSectionPanel_upperSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchAndOfferContent_searchAndOfferPanel_searchAndOfferContent_searchPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchAndOfferContent_searchAndOfferPanel_searchAndOfferContent_offerContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_content">;
    static searchAndOfferContent_searchAndOfferPanel_searchAndOfferContent_offerContentPanel_offerContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchAndOfferContent_searchAndOfferPanel_searchAndOfferContent_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchObject<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "search_object_content">;
    static searchObject_searchObjectContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortAndFilterMenuModalPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "filter_menu">;
    static sortAndFilterMenuModalPanel_filterMenu<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortAndFilterMenuModals<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "filter_menu_modal" | "sort_menu_panel">;
    static sortAndFilterMenuModals_filterMenuModal<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortAndFilterMenuModals_sortMenuPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchFilterSortBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchFilterBackgroundPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "search_filter_sort_background">;
    static searchFilterBackgroundPanel_searchFilterSortBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeBgButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static closeBgButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeBgButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeBgButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeBgPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "header_close_button" | "main_close_button">;
    static closeBgPanel_headerCloseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeBgPanel_mainCloseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalLineDividerRow<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "vert_line_divider_row_top_buffer" | "vertical_line_divider_horizontal_panel_with_padding" | "vert_line_divider_row_bottom_buffer">;
    static verticalLineDividerRow_vertLineDividerRowTopBuffer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalLineDividerRow_verticalLineDividerHorizontalPanelWithPadding<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "vert_line_divider_row_left_buffer" | "vertical_line_divider_row_line" | "vert_line_divider_row_right_buffer">;
    static verticalLineDividerRow_verticalLineDividerHorizontalPanelWithPadding_vertLineDividerRowLeftBuffer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalLineDividerRow_verticalLineDividerHorizontalPanelWithPadding_verticalLineDividerRowLine<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalLineDividerRow_verticalLineDividerHorizontalPanelWithPadding_vertLineDividerRowRightBuffer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalLineDividerRow_vertLineDividerRowBottomBuffer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlDropdownHeaderRowButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlSubcategoryButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlDropdownHeaderRow<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "drowdown_header_row_content">;
    static sdlDropdownHeaderRow_drowdownHeaderRowContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_aspects">;
    static sdlDropdownHeaderRow_drowdownHeaderRowContent_buttonAspects<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlDropdownDataRow<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_aspects" | "row_background">;
    static sdlDropdownDataRow_rowBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlDropdownDataRow_buttonAspects<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class StoreLayout extends Class {
    static sdlScrollingContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "sdl_scrolling_content_stack">;
    static sdlScrollingContentPanel_sdlScrollingContentStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlScrollingContentStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "footer" | "padding_0" | "store_screen_layout_factory">;
    static sdlScrollingContentStack_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlScrollingContentStack_storeScreenLayoutFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlScrollingContentStack_footer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlScrollingSectionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding1" | "padding0" | "side_selection" | "sdl_scrolling_section">;
    static sdlScrollingSectionPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlScrollingSectionPanel_sideSelection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlScrollingSectionPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlScrollingSectionPanel_sdlScrollingSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlScrollingSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static characterCreatorSdlScrollSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static characterCreatorSdlSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "sdl_section">;
    static characterCreatorSdlSection_sdlSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static characterCreatorPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_main_panel_padding" | "character_creator_sdl_portion" | "middle_main_panel_padding" | "right_main_panel" | "right_main_panel_padding">;
    static characterCreatorPanel_leftMainPanelPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static characterCreatorPanel_characterCreatorSdlPortion<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static characterCreatorPanel_middleMainPanelPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static characterCreatorPanel_rightMainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static characterCreatorPanel_rightMainPanelPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static characterCreatorScreenLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "character_creator_panel">;
    static characterCreatorScreenLayout_characterCreatorPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "background" | "main_panel_content" | "progress_loading">;
    static mainPanel_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_mainPanelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "sdl_screen_content">;
    static mainPanel_mainPanelContent_sdlScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "image_panel" | "label_panel">;
    static navButtonContent_imagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navButtonContent_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultNavLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_text_label">;
    static defaultNavLabelPanel_buttonTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static styledNavLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_text_label">;
    static styledNavLabelPanel_buttonTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static styledNavLabelPanelMinecraftTen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_text_label">;
    static styledNavLabelPanelMinecraftTen_buttonTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultStyledButtonTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static navImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_image_panel" | "button_animated_panel">;
    static navImagePanel_buttonImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navImagePanel_buttonAnimatedPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navButtonImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_image">;
    static navButtonImagePanel_buttonImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navButtonImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static navButtonAnimation<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static navButtonFill<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navButtonFillStyled<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navButtonFillStyledMc10<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navButtonStandardStyled<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navButtonStandardStyledMc10<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static navButtonStandard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "nav_button">;
    static navButtonStandard_navButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static navButtonGridPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "nav_button_grid">;
    static navButtonGridPanel_navButtonGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeLayoutRibbonSearchButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeLayoutRibbonSearchButtonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_image">;
    static storeLayoutRibbonSearchButtonContent_buttonImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeDataDrivenScreenBase<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeScreenModalPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_factory" | "one_button_dialog">;
    static storeScreenModalPanel_oneButtonDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeScreenModalPanel_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeScreenMainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_content_view" | "sort_and_filter_modals">;
    static storeScreenMainPanel_mainContentView<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeScreenMainPanel_sortAndFilterModals<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeFullScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel" | "popup_dialog_factory" | "mouse_input_focus_panel" | "character_selector_dialog_factory" | "custom_skin_dialog_factory">;
    static storeFullScreenContent_mouseInputFocusPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeFullScreenContent_mainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeFullScreenContent_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeFullScreenContent_characterSelectorDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeFullScreenContent_customSkinDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlBaseScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static characterCreatorBaseScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeDataDrivenScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static characterCreatorScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static dressingRoomColorPickerScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static expandedAppearanceViewScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static nonScrollableSdlScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinSelectorScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeDataDrivenModalOneButtonScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class FilterMenu extends Class {
    static filterClearButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "clear_button">;
    static filterClearButtonPanel_clearButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static chevronIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "chevron_icon">;
    static chevronIconPanel_chevronIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterVariablesPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterOptionButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_chevron_icon_panel" | "filter_type_and_selected_panel" | "right_chevron_icon_panel">;
    static filterOptionButtonContent_leftChevronIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterOptionButtonContent_filterTypeAndSelectedPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_padding" | "bottom_padding" | "middle_padding" | "filter_type_label" | "selected_label">;
    static filterOptionButtonContent_filterTypeAndSelectedPanel_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterOptionButtonContent_filterTypeAndSelectedPanel_filterTypeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterOptionButtonContent_filterTypeAndSelectedPanel_middlePadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterOptionButtonContent_filterTypeAndSelectedPanel_selectedLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterOptionButtonContent_filterTypeAndSelectedPanel_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterOptionButtonContent_rightChevronIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterOptionsButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "filter_variables_panel">;
    static filterOptionsButtonPanel_filterVariablesPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "filter_options_button">;
    static filterOptionsButtonPanel_filterVariablesPanel_filterOptionsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMainMenuOptionsButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterTitleBarContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "filter_logo_and_count_panel" | "centered_filter_title_label" | "filter_title_padding_close_button" | "centered_x">;
    static filterTitleBarContent_filterLogoAndCountPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterTitleBarContent_centeredFilterTitleLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "filter_title_label">;
    static filterTitleBarContent_centeredFilterTitleLabel_filterTitleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterTitleBarContent_filterTitlePaddingCloseButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterTitleBarContent_centeredX<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "close_x_image">;
    static filterTitleBarContent_centeredX_closeXImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterTitleBar<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterCheckboxToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterCheckboxNoIconToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "filter_checkbox_no_icon_toggle">;
    static filterCheckboxNoIconToggle_filterCheckboxNoIconToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypeSubMenuPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "pack_type_sub_menu">;
    static packTypeSubMenuPanel_packTypeSubMenu<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "addon_packs_filter" | "skin_packs_filter" | "texture_packs_filter" | "worlds_template_filter_panel" | "mashup_packs_filter">;
    static packTypeSubMenuPanel_packTypeSubMenu_addonPacksFilter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypeSubMenuPanel_packTypeSubMenu_skinPacksFilter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypeSubMenuPanel_packTypeSubMenu_texturePacksFilter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypeSubMenuPanel_packTypeSubMenu_worldsTemplateFilterPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "worlds_template_filter" | "world_template_type_filters">;
    static packTypeSubMenuPanel_packTypeSubMenu_worldsTemplateFilterPanel_worldsTemplateFilter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypeSubMenuPanel_packTypeSubMenu_worldsTemplateFilterPanel_worldTemplateTypeFilters<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypeSubMenuPanel_packTypeSubMenu_mashupPacksFilter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static offerTypeSubMenuPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "bundles_filter" | "realms_plus_filter" | "csb_filter">;
    static offerTypeSubMenuPanel_bundlesFilter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static offerTypeSubMenuPanel_realmsPlusFilter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static offerTypeSubMenuPanel_csbFilter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusFilter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "realms_plus_filter">;
    static realmsPlusFilter_realmsPlusFilter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbFilter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "csb_filter">;
    static csbFilter_csbFilter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusGradientContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content_panel" | "gradient" | "particles">;
    static realmsPlusGradientContentPanel_gradient<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusGradientContentPanel_particles<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusGradientContentPanel_contentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbGradientContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content_panel" | "gradient" | "particles">;
    static csbGradientContentPanel_gradient<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbGradientContentPanel_particles<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbGradientContentPanel_contentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterSectionContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "clear_button" | "section_title_button" | "section_sub_menu">;
    static filterSectionContent_sectionTitleButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterSectionContent_clearButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterSectionContent_sectionSubMenu<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterSectionContentDynamic<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "filter_section_content">;
    static filterSectionContentDynamic_filterSectionContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMainMenuContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "creator_button" | "filter_title_bar_panel" | "offer_type_button" | "pack_type_button" | "minecoin_button" | "rating_button" | "installed_state_button" | "filter_main_menu_filter_toggles_section" | "clear_button_panel">;
    static filterMainMenuContent_filterTitleBarPanel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMainMenuContent_offerTypeButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMainMenuContent_packTypeButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMainMenuContent_minecoinButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMainMenuContent_ratingButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMainMenuContent_creatorButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMainMenuContent_installedStateButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMainMenuContent_filterMainMenuFilterTogglesSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "filter_main_menu_filter_toggle_grid_panel">;
    static filterMainMenuContent_filterMainMenuFilterTogglesSection_filterMainMenuFilterToggleGridPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMainMenuContent_clearButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMainMenuContentPersona<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "filter_title_bar_panel" | "minecoin_button" | "clear_button_panel" | "persona_body_button" | "persona_style_button" | "emote_filter_section">;
    static filterMainMenuContentPersona_filterTitleBarPanel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMainMenuContentPersona_personaBodyButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMainMenuContentPersona_personaStyleButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMainMenuContentPersona_emoteFilterSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "filter_emote_toggle_grid_panel">;
    static filterMainMenuContentPersona_emoteFilterSection_filterEmoteToggleGridPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMainMenuContentPersona_minecoinButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMainMenuContentPersona_clearButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterSectionContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "filter_menu_screen">;
    static filterSectionContentPanel_filterMenuScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMainMenuSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMainMenuSectionPersona<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterPackTypeSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterOfferTypeSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterTypeSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMenuContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "filter_main_menu_screen" | "filter_offer_type_screen" | "filter_pack_type_screen" | "filter_minecoin_section" | "filter_rating_section" | "filter_creator_section" | "filter_installed_state_section">;
    static filterMenuContent_filterMainMenuScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMenuContent_filterOfferTypeScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMenuContent_filterPackTypeScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMenuContent_filterMinecoinSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMenuContent_filterRatingSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMenuContent_filterCreatorSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMenuContent_filterInstalledStateSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMenuContentPersona<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "filter_main_menu_screen" | "filter_minecoin_section" | "filter_style_section" | "filter_body_section">;
    static filterMenuContentPersona_filterMainMenuScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMenuContentPersona_filterStyleSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMenuContentPersona_filterBodySection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMenuContentPersona_filterMinecoinSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMenuPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_padding" | "alignment_panel">;
    static filterMenuPanel_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMenuPanel_alignmentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_padding" | "right_padding" | "filter_menu_content_scroll">;
    static filterMenuPanel_alignmentPanel_leftPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMenuPanel_alignmentPanel_filterMenuContentScroll<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMenuPanel_alignmentPanel_rightPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMenuScreenContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "filter_main_panel" | "filter_main_panel_persona" | "filter_menu_close_background_button">;
    static filterMenuScreenContent_filterMainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMenuScreenContent_filterMainPanelPersona<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static filterMenuScreenContent_filterMenuCloseBackgroundButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class StoreInventory extends Class {
    static signInButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static noXblAndLocalContentWarningPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "bottom_padding" | "image_and_description_bg_panel">;
    static noXblAndLocalContentWarningPanel_imageAndDescriptionBgPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "image_and_description_panel">;
    static noXblAndLocalContentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image_and_description_stack">;
    static noXblAndLocalContentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_padding" | "bottom_padding" | "warning_image_and_label_1">;
    static noXblAndLocalContentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noXblAndLocalContentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_warningImageAndLabel1<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "xbl_image_center_panel" | "xbl_image_padding_warning" | "warning_label_centering_panel">;
    static noXblAndLocalContentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_warningImageAndLabel1_xblImageCenterPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "xbl_sign_in_image">;
    static noXblAndLocalContentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_warningImageAndLabel1_xblImageCenterPanel_xblSignInImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static noXblAndLocalContentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_warningImageAndLabel1_xblImagePaddingWarning<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noXblAndLocalContentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_warningImageAndLabel1_warningLabelCenteringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "warning_label_stack">;
    static noXblAndLocalContentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_warningImageAndLabel1_warningLabelCenteringPanel_warningLabelStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "message_text" | "top_padding" | "xbl_image_padding_warning" | "sign_in_button_centering_panel">;
    static noXblAndLocalContentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_warningImageAndLabel1_warningLabelCenteringPanel_warningLabelStack_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noXblAndLocalContentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_warningImageAndLabel1_warningLabelCenteringPanel_warningLabelStack_messageText<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static noXblAndLocalContentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_warningImageAndLabel1_warningLabelCenteringPanel_warningLabelStack_xblImagePaddingWarning<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noXblAndLocalContentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_warningImageAndLabel1_warningLabelCenteringPanel_warningLabelStack_signInButtonCenteringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "sigh_in_button">;
    static noXblAndLocalContentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_warningImageAndLabel1_warningLabelCenteringPanel_warningLabelStack_signInButtonCenteringPanel_sighInButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static noXblAndLocalContentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noXblAndLocalContentWarningPanel_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noXblAndNoLocalConentWarningPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "bottom_padding" | "image_and_description_bg_panel">;
    static noXblAndNoLocalConentWarningPanel_imageAndDescriptionBgPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "image_and_description_panel">;
    static noXblAndNoLocalConentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image_and_description_stack">;
    static noXblAndNoLocalConentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_padding" | "bottom_padding" | "warning_image_and_label_1">;
    static noXblAndNoLocalConentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noXblAndNoLocalConentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_warningImageAndLabel1<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "xbl_image_center_panel" | "xbl_image_padding_warning" | "warning_label_centering_panel">;
    static noXblAndNoLocalConentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_warningImageAndLabel1_xblImageCenterPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "xbl_sign_in_image">;
    static noXblAndNoLocalConentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_warningImageAndLabel1_xblImageCenterPanel_xblSignInImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static noXblAndNoLocalConentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_warningImageAndLabel1_xblImagePaddingWarning<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noXblAndNoLocalConentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_warningImageAndLabel1_warningLabelCenteringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "warning_label_stack">;
    static noXblAndNoLocalConentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_warningImageAndLabel1_warningLabelCenteringPanel_warningLabelStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "message_text" | "top_padding" | "xbl_image_padding_warning" | "sign_in_button_centering_panel">;
    static noXblAndNoLocalConentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_warningImageAndLabel1_warningLabelCenteringPanel_warningLabelStack_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noXblAndNoLocalConentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_warningImageAndLabel1_warningLabelCenteringPanel_warningLabelStack_messageText<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static noXblAndNoLocalConentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_warningImageAndLabel1_warningLabelCenteringPanel_warningLabelStack_xblImagePaddingWarning<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noXblAndNoLocalConentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_warningImageAndLabel1_warningLabelCenteringPanel_warningLabelStack_signInButtonCenteringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "sigh_in_button">;
    static noXblAndNoLocalConentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_warningImageAndLabel1_warningLabelCenteringPanel_warningLabelStack_signInButtonCenteringPanel_sighInButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static noXblAndNoLocalConentWarningPanel_imageAndDescriptionBgPanel_imageAndDescriptionPanel_imageAndDescriptionStack_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noXblAndNoLocalConentWarningPanel_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySignInPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "no_xbl_and_local_content_warning_panel" | "no_xbl_and_no_local_conent_warning_panel">;
    static inventorySignInPanel_noXblAndLocalContentWarningPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySignInPanel_noXblAndNoLocalConentWarningPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dividerPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider" | "top_pad" | "bottom_pad">;
    static dividerPanel_topPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dividerPanel_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dividerPanel_bottomPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static downImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionToggleBase<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ownedToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static currentToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static removedToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static subscriptionsToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryLeftPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider_0" | "divider_1" | "top_pad" | "owned_toggle" | "subscriptions_toggle" | "owned_dropdown_box_panel" | "csub_panel">;
    static inventoryLeftPanel_topPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryLeftPanel_ownedToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryLeftPanel_ownedDropdownBoxPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "owned_dropdown_box">;
    static inventoryLeftPanel_ownedDropdownBoxPanel_ownedDropdownBox<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryLeftPanel_divider0<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryLeftPanel_csubPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "csub_stack_panel">;
    static inventoryLeftPanel_csubPanel_csubStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryLeftPanel_divider1<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryLeftPanel_subscriptionsToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csubStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "section_title" | "padding_title_vertical" | "dropdown_panel">;
    static csubStackPanel_paddingTitleVertical<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csubStackPanel_sectionTitle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_title_horizontal" | "testTitle">;
    static csubStackPanel_sectionTitle_paddingTitleHorizontal<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csubStackPanel_sectionTitle_testTitle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csubStackPanel_dropdownPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dropdown_stack_panel">;
    static csubStackPanel_dropdownPanel_dropdownStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad_2" | "pad_1" | "current_toggle" | "removed_toggle" | "current_dropdown_box_panel" | "removed_dropdown_box_panel">;
    static csubStackPanel_dropdownPanel_dropdownStackPanel_currentToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csubStackPanel_dropdownPanel_dropdownStackPanel_currentDropdownBoxPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "current_dropdown_box">;
    static csubStackPanel_dropdownPanel_dropdownStackPanel_currentDropdownBoxPanel_currentDropdownBox<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csubStackPanel_dropdownPanel_dropdownStackPanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csubStackPanel_dropdownPanel_dropdownStackPanel_removedToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csubStackPanel_dropdownPanel_dropdownStackPanel_removedDropdownBoxPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "removed_dropdown_box">;
    static csubStackPanel_dropdownPanel_dropdownStackPanel_removedDropdownBoxPanel_removedDropdownBox<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csubStackPanel_dropdownPanel_dropdownStackPanel_pad2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static subscriptionsTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "subscriptions_text">;
    static subscriptionsTextPanel_subscriptionsText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "section_title" | "dropdown_panel">;
    static realmsPlusStackPanel_sectionTitle<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "border" | "particles" | "section_title_label">;
    static realmsPlusStackPanel_sectionTitle_border<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusStackPanel_sectionTitle_sectionTitleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusStackPanel_sectionTitle_particles<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusStackPanel_dropdownPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dropdown_stack_panel">;
    static realmsPlusStackPanel_dropdownPanel_dropdownStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad_2" | "pad_1" | "pad_0" | "current_toggle" | "removed_toggle" | "current_dropdown_box_panel" | "removed_dropdown_box_panel">;
    static realmsPlusStackPanel_dropdownPanel_dropdownStackPanel_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusStackPanel_dropdownPanel_dropdownStackPanel_currentToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusStackPanel_dropdownPanel_dropdownStackPanel_currentDropdownBoxPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "current_dropdown_box">;
    static realmsPlusStackPanel_dropdownPanel_dropdownStackPanel_currentDropdownBoxPanel_currentDropdownBox<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusStackPanel_dropdownPanel_dropdownStackPanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusStackPanel_dropdownPanel_dropdownStackPanel_removedToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusStackPanel_dropdownPanel_dropdownStackPanel_removedDropdownBoxPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "removed_dropdown_box">;
    static realmsPlusStackPanel_dropdownPanel_dropdownStackPanel_removedDropdownBoxPanel_removedDropdownBox<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusStackPanel_dropdownPanel_dropdownStackPanel_pad2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title_label" | "icon_panel" | "pad_2" | "pad_3" | "pad_1" | "pad_0" | "count_panel" | "pad_0_fill" | "right_carrot" | "down_carrot">;
    static dropdownButtonContent_titleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownButtonContent_pad0Fill<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownButtonContent_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownButtonContent_iconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "block_icon">;
    static dropdownButtonContent_iconPanel_blockIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownButtonContent_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownButtonContent_pad2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownButtonContent_countPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "count">;
    static dropdownButtonContent_countPanel_count<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownButtonContent_pad3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownButtonContent_rightCarrot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "right">;
    static dropdownButtonContent_rightCarrot_right<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownButtonContent_downCarrot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "down">;
    static dropdownButtonContent_downCarrot_down<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static ownedDropdownContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static currentDropdownContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static removedDropdownContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownBox<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "all" | "divider_0" | "divider_1" | "divider_2" | "divider_3" | "top_pad" | "skins" | "bottom_pad" | "textures" | "worlds" | "addons" | "divider_4" | "mashups">;
    static dropdownBox_topPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownBox_all<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownBox_divider0<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownBox_addons<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownBox_divider1<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownBox_skins<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownBox_divider2<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownBox_worlds<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownBox_divider3<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownBox_textures<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownBox_divider4<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownBox_mashups<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownBox_bottomPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static categoryPanelButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static categoryPanelButton_default<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static categoryPanelButton_hover<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static categoryPanelButton_pressed<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static categoryStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "number" | "text" | "icon" | "pad_1" | "fill_pad">;
    static categoryStackPanel_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static categoryStackPanel_fillPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static categoryStackPanel_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static categoryStackPanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static categoryStackPanel_number<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchObject<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static listPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "progress_loading" | "list_panel_content">;
    static listPanel_listPanelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "search_and_offers_grid_scroll_panel">;
    static listPanel_listPanelContent_searchAndOffersGridScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static listPanel_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemsContentSection<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static subscriptionsContentSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "search_and_offers_grid_scroll_panel" | "left_pad">;
    static subscriptionsContentSection_leftPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static subscriptionsContentSection_searchAndOffersGridScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPaneFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "control">;
    static contentArea_control<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "right_pane_factory">;
    static contentArea_control_rightPaneFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider_panel" | "inventory_left_panel" | "inventory_right_panel">;
    static mainPanel_inventoryLeftPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left_scrolling_panel" | "inventory_left_image">;
    static mainPanel_inventoryLeftPanel_inventoryLeftImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_inventoryLeftPanel_leftScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_dividerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_divider">;
    static mainPanel_dividerPanel_mainDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_inventoryRightPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "right_panel_background_image" | "content_right_panel">;
    static mainPanel_inventoryRightPanel_rightPanelBackgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_inventoryRightPanel_contentRightPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeInventoryScreenMainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_content_view" | "sort_and_filter_modals">;
    static storeInventoryScreenMainPanel_mainContentView<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeInventoryScreenMainPanel_sortAndFilterModals<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeSearchScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel" | "popup_dialog_factory">;
    static storeSearchScreenContent_mainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeSearchScreenContent_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeInventoryScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static signinTextSectionBody<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static signinText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static signinText02<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static signinTextSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "signin_text" | "signin_text_02" | "line_1_padding_line_2">;
    static signinTextSection_signinText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static signinTextSection_line1PaddingLine2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static signinTextSection_signinText02<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static signInPanelTextBody<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class StoreItemList extends Class {
    static storeOfferKeyArt<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "progress_loading" | "search_object">;
    static mainPanel_searchObject<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "search_panel">;
    static scrollingContentStack_searchPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static personaOfferGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStoreOfferGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "frame">;
    static storeOfferGridItem_frame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "progress" | "key_art" | "durable_offer_info_panel" | "offer_button" | "title_label_panel">;
    static storeOfferGridItem_frame_keyArt<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "csb_expiration_banner" | "key_art_frame">;
    static storeOfferGridItem_frame_keyArt_keyArtFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_keyArt_csbExpirationBanner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_progress<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_titleLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "durable_offer_title_label">;
    static storeOfferGridItem_frame_titleLabelPanel_durableOfferTitleLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title" | "creator_label">;
    static storeOfferGridItem_frame_titleLabelPanel_durableOfferTitleLabel_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_titleLabelPanel_durableOfferTitleLabel_creatorLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offer_status_panel">;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_6" | "markdown_panel" | "offer_prompt_panel" | "pack_icon_panel" | "padding_markdown_panel_right" | "sales_markdown_percentage_panel" | "fill_markdown_panel_left" | "subscription_panel">;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_subscriptionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_salesMarkdownPercentagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "markdown_background">;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_salesMarkdownPercentagePanel_markdownBackground<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_packIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "pack_icon_stack">;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_packIconPanel_packIconStack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_fillMarkdownPanelLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_markdownPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_paddingMarkdownPanelRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_offerPromptPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_durableOfferInfoPanel_offerStatusPanel_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_offerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "pressed" | "hover" | "offer_status_icon">;
    static storeOfferGridItem_frame_offerButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "key_art_size_panel">;
    static storeOfferGridItem_frame_offerButton_hover_keyArtSizePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "key_art_frame">;
    static storeOfferGridItem_frame_offerButton_hover_keyArtSizePanel_keyArtFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_offerButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "key_art_size_panel">;
    static storeOfferGridItem_frame_offerButton_pressed_keyArtSizePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "key_art_frame">;
    static storeOfferGridItem_frame_offerButton_pressed_keyArtSizePanel_keyArtFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeOfferGridItem_frame_offerButton_offerStatusIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeItemListScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel" | "popup_dialog_factory">;
    static storeScreenContent_mainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeScreenContent_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class StoreProgress extends Class {
    static storeProgressScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_image" | "progress_dialog">;
    static screenContent_titleImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenContent_progressDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "progress_panel" | "tooltip_panel">;
    static dialogContent_tooltipPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tooltip_text">;
    static dialogContent_tooltipPanel_tooltipText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent_progressPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_percent_panel" | "empty_progress_bar">;
    static dialogContent_progressPanel_emptyProgressBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent_progressPanel_progressPercentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_bar_nub" | "full_progress_bar">;
    static dialogContent_progressPanel_progressPercentPanel_fullProgressBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent_progressPanel_progressPercentPanel_progressBarNub<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class PromoTimeline extends Class {
    static promoBannerFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoBannerButtonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_spinner" | "promo_banner_button">;
    static promoBannerButtonContent_promoBannerButton<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoBannerButtonContent_progressLoadingSpinner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoBannerImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoBannerPanelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "banner_image" | "banner_text_panel" | "button_stack_panel">;
    static promoBannerPanelContent_bannerImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoBannerPanelContent_bannerTextPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "description" | "padding_0" | "title_stack_panel">;
    static promoBannerPanelContent_bannerTextPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoBannerPanelContent_bannerTextPanel_titleStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "banner_title">;
    static promoBannerPanelContent_bannerTextPanel_titleStackPanel_bannerTitle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoBannerPanelContent_bannerTextPanel_description<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoBannerPanelContent_buttonStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_offset" | "right_offset" | "banner_button">;
    static promoBannerPanelContent_buttonStackPanel_leftOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoBannerPanelContent_buttonStackPanel_bannerButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoBannerPanelContent_buttonStackPanel_rightOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoBannerHolidayPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "banner_full_button">;
    static promoBannerHolidayPanel_bannerFullButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static promoBannerHolidayPanel_bannerFullButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoBannerHolidayPanel_bannerFullButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoBannerHolidayPanel_bannerFullButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageMessagePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_0" | "image_message_row_content">;
    static imageMessagePanel_imageMessageRowContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageMessagePanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageMessageRowContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gray_background" | "row_button">;
    static imageMessageRowContent_grayBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "message_text" | "row_image">;
    static imageMessageRowContent_grayBackground_messageText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageMessageRowContent_grayBackground_rowImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageMessageRowContent_rowButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoImagePanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "button_image_panel" | "button_animated_panel">;
    static promoImagePanel_buttonImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoImagePanel_buttonAnimatedPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoButtonImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_image">;
    static promoButtonImagePanel_buttonImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoButtonImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoButtonAnimation<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannerButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlTextAlignedPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlTextMinecraftTenAlignedPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlContentAlignedPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "control" | "left__padding_panel" | "right_padding_panel">;
    static sdlContentAlignedPanel_left_paddingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlContentAlignedPanel_control<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlContentAlignedPanel_rightPaddingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlAlignedText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlAlignedMinecraftTenText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static coloredDirectionButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$direction_gamepad_button_helper" | "chevron_image">;
    static coloredDirectionButtonPanel_chevronImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static coloredDirectionButtonPanel_$directionGamepadButtonHelper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftCornerArt<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightCornerArt<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoLandingPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "left_corner_art" | "right_corner_art" | "promo_landing_panel_content">;
    static promoLandingPanel_promoLandingPanelContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad_1" | "pad_0" | "promo_top" | "promo_bottom_panel">;
    static promoLandingPanel_promoLandingPanelContent_promoTop<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoLandingPanel_promoLandingPanelContent_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoLandingPanel_promoLandingPanelContent_promoBottomPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "promo_bottom">;
    static promoLandingPanel_promoLandingPanelContent_promoBottomPanel_promoBottom<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "promotion_period_carousel_panel">;
    static promoLandingPanel_promoLandingPanelContent_promoBottomPanel_promoBottom_promotionPeriodCarouselPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "left_button_panel" | "right_button_panel" | "offer_grid">;
    static promoLandingPanel_promoLandingPanelContent_promoBottomPanel_promoBottom_promotionPeriodCarouselPanel_leftButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left_button">;
    static promoLandingPanel_promoLandingPanelContent_promoBottomPanel_promoBottom_promotionPeriodCarouselPanel_leftButtonPanel_leftButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoLandingPanel_promoLandingPanelContent_promoBottomPanel_promoBottom_promotionPeriodCarouselPanel_offerGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoLandingPanel_promoLandingPanelContent_promoBottomPanel_promoBottom_promotionPeriodCarouselPanel_rightButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "right_button">;
    static promoLandingPanel_promoLandingPanelContent_promoBottomPanel_promoBottom_promotionPeriodCarouselPanel_rightButtonPanel_rightButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoLandingPanel_promoLandingPanelContent_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoLandingPanel_leftCornerArt<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoLandingPanel_rightCornerArt<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionScreenTopSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel">;
    static promotionScreenTopSection_mainPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionTopMainPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "promotion_top_main_stack">;
    static promotionTopMainPanel_promotionTopMainStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "main_panel_title" | "promo_single_top" | "promo_multi_item">;
    static promotionTopMainPanel_promotionTopMainStack_mainPanelTitle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionTopMainPanel_promotionTopMainStack_promoSingleTop<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "single_item_view">;
    static promotionTopMainPanel_promotionTopMainStack_promoSingleTop_singleItemView<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionTopMainPanel_promotionTopMainStack_promoMultiItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelTitle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "padding_2" | "header_stack" | "divdier_centering_panel">;
    static mainPanelTitle_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelTitle_headerStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "padding_2" | "header_panel" | "back_button_centering_panel" | "claim_all_button_panel">;
    static mainPanelTitle_headerStack_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelTitle_headerStack_backButtonCenteringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button">;
    static mainPanelTitle_headerStack_backButtonCenteringPanel_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelTitle_headerStack_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelTitle_headerStack_headerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_and_description">;
    static mainPanelTitle_headerStack_headerPanel_titleAndDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelTitle_headerStack_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelTitle_headerStack_claimAllButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "claim_all_button">;
    static mainPanelTitle_headerStack_claimAllButtonPanel_claimAllButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelTitle_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelTitle_divdierCenteringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "divider">;
    static mainPanelTitle_divdierCenteringPanel_divider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelTitle_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoMultiItemGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static promoButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "key_art_size_panel">;
    static promoButton_default_keyArtSizePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_frame" | "key_art_frame">;
    static promoButton_default_keyArtSizePanel_keyArtFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "sizing_panel" | "platform_restricted_warning_image">;
    static promoButton_default_keyArtSizePanel_keyArtFrame_sizingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoButton_default_keyArtSizePanel_keyArtFrame_platformRestrictedWarningImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoButton_default_keyArtSizePanel_buttonFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "key_art_size_panel">;
    static promoButton_hover_keyArtSizePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_frame" | "key_art_frame">;
    static promoButton_hover_keyArtSizePanel_keyArtFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "sizing_panel">;
    static promoButton_hover_keyArtSizePanel_keyArtFrame_sizingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoButton_hover_keyArtSizePanel_buttonFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_frame" | "key_art_frame">;
    static promoButton_pressed_keyArtFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "sizing_panel">;
    static promoButton_pressed_keyArtFrame_sizingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoButton_pressed_buttonFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background_image" | "promo_button" | "platform_restricted_error_multi_item">;
    static promoGridItem_backgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "promo_content">;
    static promoGridItem_backgroundImage_promoContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoGridItem_promoButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoGridItem_platformRestrictedErrorMultiItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformRestrictedError<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "platform_restricted_error_button">;
    static platformRestrictedError_platformRestrictedErrorButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover" | "white_overlay_to_gray_out">;
    static platformRestrictedError_platformRestrictedErrorButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformRestrictedError_platformRestrictedErrorButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformRestrictedError_platformRestrictedErrorButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformRestrictedError_platformRestrictedErrorButton_whiteOverlayToGrayOut<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoGridItemContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_0" | "thumbnail_image" | "persona_key_art_frame" | "title_tooltip">;
    static promoGridItemContent_thumbnailImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoGridItemContent_personaKeyArtFrame<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "rarity_bar_panel" | "persona_image_panel">;
    static promoGridItemContent_personaKeyArtFrame_personaImagePanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoGridItemContent_personaKeyArtFrame_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoGridItemContent_personaKeyArtFrame_rarityBarPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoGridItemContent_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoGridItemContent_titleTooltip<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "tooltip" | "promo_title">;
    static promoGridItemContent_titleTooltip_promoTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoGridItemContent_titleTooltip_tooltip<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionPeriodGridPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "promotion_offer_grid_image">;
    static promotionPeriodGridPanel_promotionOfferGridImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item_selected_bg" | "promotion_offer_grid_stack_panel">;
    static promotionPeriodGridPanel_promotionOfferGridImage_itemSelectedBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionPeriodGridPanel_promotionOfferGridImage_promotionOfferGridStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad" | "day_label_panel" | "image_centering_panel">;
    static promotionPeriodGridPanel_promotionOfferGridImage_promotionOfferGridStackPanel_dayLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "day_label">;
    static promotionPeriodGridPanel_promotionOfferGridImage_promotionOfferGridStackPanel_dayLabelPanel_dayLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionPeriodGridPanel_promotionOfferGridImage_promotionOfferGridStackPanel_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionPeriodGridPanel_promotionOfferGridImage_promotionOfferGridStackPanel_imageCenteringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image_panel">;
    static promotionPeriodGridPanel_promotionOfferGridImage_promotionOfferGridStackPanel_imageCenteringPanel_imagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item_button">;
    static promotionPeriodGridPanel_promotionOfferGridImage_promotionOfferGridStackPanel_imageCenteringPanel_imagePanel_itemButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionPeriodOfferPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "padding_2" | "padding_3" | "padding_4" | "padding_5" | "period_1" | "period_2" | "period_3" | "period_4" | "period_5" | "period_6" | "period_7">;
    static promotionPeriodOfferPanel_period1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionPeriodOfferPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionPeriodOfferPanel_period2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionPeriodOfferPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionPeriodOfferPanel_period3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionPeriodOfferPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionPeriodOfferPanel_period4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionPeriodOfferPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionPeriodOfferPanel_period5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionPeriodOfferPanel_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionPeriodOfferPanel_period6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionPeriodOfferPanel_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionPeriodOfferPanel_period7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleButtonControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "green_check" | "key_art_image_panel">;
    static toggleButtonControl_greenCheck<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleButtonControl_keyArtImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image_loading_panel" | "key_art_image">;
    static toggleButtonControl_keyArtImagePanel_imageLoadingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleButtonControl_keyArtImagePanel_keyArtImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkedBorder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionPeriodGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "frame">;
    static promotionPeriodGridItem_frame<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_button">;
    static promotionPeriodGridItem_frame_offerButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_toggle_button">;
    static promotionPeriodGridItem_frame_offerButton_offerToggleButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalPadding2px<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static timerIconTooltipPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "limited_status_image">;
    static timerIconTooltipPanel_limitedStatusImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static timerTooltipPanelRightExtending<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static timerTooltipPanelRightExtending_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static timerTooltipPanelRightExtending_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static timerTooltipPanelRightExtending_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static timerTooltipPanelLeftExtending<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static timerTooltipPanelLeftExtending_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static timerTooltipPanelLeftExtending_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static timerTooltipPanelLeftExtending_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static noTimerTooltipPanel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static noTimerTooltipPanel_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noTimerTooltipPanel_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noTimerTooltipPanel_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoTimerPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "timer_icon_and_tooltip_panel" | "timer_text">;
    static promoTimerPanel_timerIconAndTooltipPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tooltip_button_right_extending" | "tooltip_button_left_extending" | "notooltip_button" | "timer_icon">;
    static promoTimerPanel_timerIconAndTooltipPanel_tooltipButtonRightExtending<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoTimerPanel_timerIconAndTooltipPanel_tooltipButtonLeftExtending<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoTimerPanel_timerIconAndTooltipPanel_notooltipButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoTimerPanel_timerIconAndTooltipPanel_timerIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoTimerPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoTimerPanel_timerText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static offerTitlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_title_label">;
    static offerTitlePanel_offerTitleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleAndAuthorPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "author_button_panel">;
    static titleAndAuthorPanel_authorButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "summary_author_button">;
    static titleAndAuthorPanel_authorButtonPanel_summaryAuthorButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item_glyph_count_panel">;
    static glyphPanel_itemGlyphCountPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "item_glyph_count_panel_label" | "glyph_icon_panel" | "center_item_glyph_padding" | "item_glyph_panel_padding">;
    static glyphPanel_itemGlyphCountPanel_glyphIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "glyph_icon">;
    static glyphPanel_itemGlyphCountPanel_glyphIconPanel_glyphIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphPanel_itemGlyphCountPanel_centerItemGlyphPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphPanel_itemGlyphCountPanel_itemGlyphCountPanelLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphPanel_itemGlyphCountPanel_itemGlyphPanelPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalGlyphSectionContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "glyph_content" | "bottom_glyph_content_padding">;
    static verticalGlyphSectionContent_glyphContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalGlyphSectionContent_bottomGlyphContentPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphSectionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "glyphs">;
    static glyphSectionPanel_glyphs<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "skin_glyph_section" | "world_glyph_section" | "resource_pack_glyph_section">;
    static glyphSectionPanel_glyphs_skinGlyphSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphSectionPanel_glyphs_worldGlyphSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphSectionPanel_glyphs_resourcePackGlyphSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalGlyphSectionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageGlyphsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "world_panel" | "divider" | "info" | "persona_panel">;
    static imageGlyphsPanel_worldPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "border" | "world_key_image">;
    static imageGlyphsPanel_worldPanel_border<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageGlyphsPanel_worldPanel_worldKeyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageGlyphsPanel_personaPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "border" | "rarity_bar_panel" | "persona_image">;
    static imageGlyphsPanel_personaPanel_border<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageGlyphsPanel_personaPanel_personaImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageGlyphsPanel_personaPanel_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageGlyphsPanel_personaPanel_rarityBarPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageGlyphsPanel_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageGlyphsPanel_info<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "summary_title_and_author_panel" | "glyph_section">;
    static imageGlyphsPanel_info_summaryTitleAndAuthorPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageGlyphsPanel_info_glyphSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "glyph_section_panel">;
    static imageGlyphsPanel_info_glyphSection_glyphSectionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoLowerButtonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_spinner" | "promo_banner_button">;
    static promoLowerButtonContent_promoBannerButton<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoLowerButtonContent_progressLoadingSpinner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static freeDiscountLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoUpperButtonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "download_progress_bar" | "markdown" | "promo_item_action_text_panel">;
    static promoUpperButtonContent_markdown<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "sales_banner_offset_panel" | "price_markdown_panel">;
    static promoUpperButtonContent_markdown_salesBannerOffsetPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "sales_banner_panel">;
    static promoUpperButtonContent_markdown_salesBannerOffsetPanel_salesBannerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "markdown_banner">;
    static promoUpperButtonContent_markdown_salesBannerOffsetPanel_salesBannerPanel_markdownBanner<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoUpperButtonContent_markdown_priceMarkdownPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_price">;
    static promoUpperButtonContent_markdown_priceMarkdownPanel_offerPrice<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, "text_strike_through">;
    static promoUpperButtonContent_markdown_priceMarkdownPanel_offerPrice_textStrikeThrough<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoUpperButtonContent_promoItemActionTextPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "warning_image_panel" | "promo_item_action_text">;
    static promoUpperButtonContent_promoItemActionTextPanel_warningImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "padding" | "platform_restricted_warning_image">;
    static promoUpperButtonContent_promoItemActionTextPanel_warningImagePanel_platformRestrictedWarningImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoUpperButtonContent_promoItemActionTextPanel_warningImagePanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoUpperButtonContent_promoItemActionTextPanel_promoItemActionText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoUpperButtonContent_downloadProgressBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionSectionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "contents_description">;
    static descriptionSectionPanel_contentsDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static offsetTitleOffer<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title_panel" | "pad_0">;
    static offsetTitleOffer_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static offsetTitleOffer_titlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static offsetPromoTimer<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad_0" | "promo_timer">;
    static offsetPromoTimer_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static offsetPromoTimer_promoTimer<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static offsetImageGlyphsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad_0" | "smaller_panel">;
    static offsetImageGlyphsPanel_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static offsetImageGlyphsPanel_smallerPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "details" | "description">;
    static offsetImageGlyphsPanel_smallerPanel_details<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static offsetImageGlyphsPanel_smallerPanel_description<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoPackDetailPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad_1" | "pad_0" | "offset_title_panel" | "offsetted_promo_timer" | "offsetted_details">;
    static promoPackDetailPanel_offsetTitlePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoPackDetailPanel_offsettedPromoTimer<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoPackDetailPanel_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoPackDetailPanel_offsettedDetails<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoPackDetailPanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoLeftInnerTopScrollingContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "details">;
    static promoLeftInnerTopScrollingContent_details<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoLeftInnerTop<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top" | "padding2">;
    static promoLeftInnerTop_top<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoLeftInnerTop_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoLeftInnerBottom<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "banner_button_top_panel" | "banner_button_bottom">;
    static promoLeftInnerBottom_bannerButtonTopPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "banner_button_top" | "platform_restricted_error_single_item">;
    static promoLeftInnerBottom_bannerButtonTopPanel_bannerButtonTop<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoLeftInnerBottom_bannerButtonTopPanel_platformRestrictedErrorSingleItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoLeftInnerBottom_bannerButtonBottom<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoLeftPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top" | "padding" | "bottom_buttons_padded">;
    static promoLeftPanel_top<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoLeftPanel_bottomButtonsPadded<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "bottom" | "pad_0">;
    static promoLeftPanel_bottomButtonsPadded_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoLeftPanel_bottomButtonsPadded_bottom<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoLeftPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoWorldImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image">;
    static promoWorldImagePanel_image<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "key_image">;
    static promoWorldImagePanel_image_keyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "border">;
    static promoWorldImagePanel_image_keyImage_border<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoGreyBarPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "grey_bar" | "green_bar">;
    static promoGreyBarPanel_greyBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoGreyBarPanel_greenBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoGreyBarPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoWorldButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pan_left_button" | "pan_right_button" | "navigation_bar">;
    static promoWorldButtonPanel_panLeftButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoWorldButtonPanel_navigationBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "grey_bar">;
    static promoWorldButtonPanel_navigationBar_greyBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "grey_bar_factory_panel">;
    static promoWorldButtonPanel_navigationBar_greyBar_greyBarFactoryPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoWorldButtonPanel_panRightButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoWorldPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "buttons" | "image" | "padding1" | "padding_3">;
    static promoWorldPanel_image<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoWorldPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoWorldPanel_buttons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoWorldPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoSkinPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "size_control">;
    static promoSkinPanel_sizeControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "skin_button">;
    static promoSkinPanel_sizeControl_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoSkinPanel_sizeControl_skinButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "content_panel" | "hover">;
    static promoSkinPanel_sizeControl_skinButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoSkinPanel_sizeControl_skinButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoSkinPanel_sizeControl_skinButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoSkinPanel_sizeControl_skinButton_contentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "paper_doll">;
    static promoSkinPanel_sizeControl_skinButton_contentPanel_paperDoll<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoSkinGridPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "promo_skin_pack_grid">;
    static promoSkinGridPanel_promoSkinPackGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoRightPanelScrollContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "world_screenshots_panel" | "skin_image_panel" | "persona_preview">;
    static promoRightPanelScrollContent_worldScreenshotsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "world_panel">;
    static promoRightPanelScrollContent_worldScreenshotsPanel_worldPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoRightPanelScrollContent_skinImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "skin_panel">;
    static promoRightPanelScrollContent_skinImagePanel_skinPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoRightPanelScrollContent_personaPreview<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skinScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static personaClassicSkinGridPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "persona_skin_pack_category_grid">;
    static personaClassicSkinGridPanel_personaSkinPackCategoryGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoRightPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoDetailPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "detail" | "right" | "center_spacing">;
    static promoDetailPanel_detail<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoDetailPanel_centerSpacing<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoDetailPanel_right<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionSkinViewerPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_factory" | "skin_model_panel" | "character_loading_panel">;
    static promotionSkinViewerPanel_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionSkinViewerPanel_characterLoadingPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionSkinViewerPanel_skinModelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "arrow_panel" | "skin_model">;
    static promotionSkinViewerPanel_skinModelPanel_skinModel<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static promotionSkinViewerPanel_skinModelPanel_arrowPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "rotate_arrows">;
    static promotionSkinViewerPanel_skinModelPanel_arrowPanel_rotateArrows<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoPopupToast<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class StoreSaleItemList extends Class {
    static bannerHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label_panel">;
    static bannerHeader_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "time_remaining_label" | "on_sale_banner">;
    static bannerHeader_labelPanel_onSaleBanner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "padding_panel">;
    static bannerHeader_labelPanel_onSaleBanner_paddingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "triangle" | "sales_row_header_label">;
    static bannerHeader_labelPanel_onSaleBanner_paddingPanel_salesRowHeaderLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannerHeader_labelPanel_onSaleBanner_paddingPanel_triangle<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannerHeader_labelPanel_timeRemainingLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static salesOfferContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_padding" | "sales_panel">;
    static salesOfferContent_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static salesOfferContent_salesPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "sales_banner_panel" | "top_sales_grid_padding" | "sales_grid_panel">;
    static salesOfferContent_salesPanel_salesBannerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static salesOfferContent_salesPanel_topSalesGridPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static salesOfferContent_salesPanel_salesGridPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "sales_offer_grid">;
    static salesOfferContent_salesPanel_salesGridPanel_salesOfferGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static allOfferContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "store_offer_grid_panel">;
    static allOfferContent_storeOfferGridPanel<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class StoreSearch extends Class {
    static storeOfferGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static trendingRowContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "trending_row_panel">;
    static trendingRowContent_trendingRowPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "bottom_padding" | "mid_padding" | "trending_row_label_panel" | "trending_offers_grid">;
    static trendingRowContent_trendingRowPanel_trendingRowLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "trending_row_label">;
    static trendingRowContent_trendingRowPanel_trendingRowLabelPanel_trendingRowLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static trendingRowContent_trendingRowPanel_midPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static trendingRowContent_trendingRowPanel_trendingOffersGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static trendingRowContent_trendingRowPanel_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static trendingRowsGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchOfferContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "trending_grid" | "item_list_panel">;
    static searchOfferContent_trendingGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchOfferContent_itemListPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item_list_grid">;
    static searchOfferContent_itemListPanel_itemListGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "progress_loading" | "seach_object">;
    static mainPanel_seachObject<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeSearchScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel" | "popup_dialog_factory">;
    static storeSearchScreenContent_mainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeSearchScreenContent_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeSearchScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class SortMenu extends Class {
    static sortMenuTogglePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "sort_menu_toggle_panel">;
    static sortMenuTogglePanel_sortMenuTogglePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "sort_menu_toggle">;
    static sortMenuTogglePanel_sortMenuTogglePanel_sortMenuToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortMenuFirstButtonContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_padding" | "centered_sort_logo_icon" | "logo_padding_labels" | "labels_stack_panel" | "labels_padding_x_image" | "x_image_panel">;
    static sortMenuFirstButtonContentPanel_leftPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortMenuFirstButtonContentPanel_centeredSortLogoIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "sort_logo_icon">;
    static sortMenuFirstButtonContentPanel_centeredSortLogoIcon_sortLogoIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortMenuFirstButtonContentPanel_logoPaddingLabels<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortMenuFirstButtonContentPanel_labelsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_padding" | "bottom_padding" | "middle_padding" | "sort_const_word_top" | "current_sort_value_label_bottom">;
    static sortMenuFirstButtonContentPanel_labelsStackPanel_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortMenuFirstButtonContentPanel_labelsStackPanel_sortConstWordTop<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortMenuFirstButtonContentPanel_labelsStackPanel_middlePadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortMenuFirstButtonContentPanel_labelsStackPanel_currentSortValueLabelBottom<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortMenuFirstButtonContentPanel_labelsStackPanel_bottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortMenuFirstButtonContentPanel_labelsPaddingXImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortMenuFirstButtonContentPanel_xImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "x_image">;
    static sortMenuFirstButtonContentPanel_xImagePanel_xImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortMenuToggles<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "relevance_toggle_panel" | "sort_toggle_grid">;
    static sortMenuToggles_relevanceTogglePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "relevance_toggle">;
    static sortMenuToggles_relevanceTogglePanel_relevanceToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortMenuToggles_sortToggleGrid<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortMenuShow<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "1st_button_centering_panel" | "sort_scrolling_content_panel">;
    static sortMenuShow_1stButtonCenteringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "first_button_main">;
    static sortMenuShow_1stButtonCenteringPanel_firstButtonMain<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortMenuShow_sortScrollingContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortMenuPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_padding" | "alignment_panel">;
    static sortMenuPanel_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortMenuPanel_alignmentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_padding" | "right_padding" | "sort_menu_show">;
    static sortMenuPanel_alignmentPanel_leftPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortMenuPanel_alignmentPanel_sortMenuShow<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortMenuPanel_alignmentPanel_rightPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortMenuScreenContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "sort_menu_main" | "sort_menu_main_persona" | "sort_menu_background">;
    static sortMenuScreenContent_sortMenuMain<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortMenuScreenContent_sortMenuMainPersona<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sortMenuScreenContent_sortMenuBackground<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class StructureEditor extends Class {
    static smallPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static helpIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditControl<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static axisSelectionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label" | "edit_box">;
    static axisSelectionPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static axisSelectionPanel_editBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridAxisSelectionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label_container" | "axis_grid">;
    static gridAxisSelectionPanel_labelContainer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static gridAxisSelectionPanel_labelContainer_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridAxisSelectionPanel_axisGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "X" | "Y" | "Z">;
    static gridAxisSelectionPanel_axisGrid_X<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridAxisSelectionPanel_axisGrid_Y<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridAxisSelectionPanel_axisGrid_Z<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static _3dExportButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static exportButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static detectButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static importButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static resetButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static helpButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleOptionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "toggle" | "offset_0" | "first_label_wrapper" | "second_label_wrapper">;
    static toggleOptionPanel_toggle<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleOptionPanel_offset0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleOptionPanel_firstLabelWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "first_label">;
    static toggleOptionPanel_firstLabelWrapper_firstLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleOptionPanel_secondLabelWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "second_label">;
    static toggleOptionPanel_secondLabelWrapper_secondLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static includeEntitiesPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label" | "toggle_wrapper">;
    static includeEntitiesPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static includeEntitiesPanel_toggleWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toggle">;
    static includeEntitiesPanel_toggleWrapper_toggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static waterloggingPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label" | "toggle_wrapper">;
    static waterloggingPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static waterloggingPanel_toggleWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toggle">;
    static waterloggingPanel_toggleWrapper_toggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static showBoundingBoxPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label" | "toggle_wrapper">;
    static showBoundingBoxPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static showBoundingBoxPanel_toggleWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toggle">;
    static showBoundingBoxPanel_toggleWrapper_toggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static includePlayerPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label" | "toggle_wrapper">;
    static includePlayerPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static includePlayerPanel_toggleWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toggle">;
    static includePlayerPanel_toggleWrapper_toggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static removeBlocksPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label" | "toggle_wrapper">;
    static removeBlocksPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static removeBlocksPanel_toggleWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toggle">;
    static removeBlocksPanel_toggleWrapper_toggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static _3dExportModePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "remove_blocks" | "offset_0" | "offset_2" | "size_offset_panel">;
    static _3dExportModePanel_sizeOffsetPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offset_panel" | "size_panel">;
    static _3dExportModePanel_sizeOffsetPanel_sizePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static _3dExportModePanel_sizeOffsetPanel_offsetPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static _3dExportModePanel_offset0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static _3dExportModePanel_offset2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static _3dExportModePanel_removeBlocks<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveModePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "remove_blocks" | "include_entities" | "structure_name" | "size_offset_panel" | "detect_offset" | "detect" | "include_entities_offset" | "remove_blocks_offset" | "redstone_save_offset" | "redstone_save_mode" | "trailing_offset">;
    static saveModePanel_structureName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveModePanel_sizeOffsetPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offset_panel" | "size_panel">;
    static saveModePanel_sizeOffsetPanel_sizePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveModePanel_sizeOffsetPanel_offsetPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveModePanel_detectOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveModePanel_detect<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveModePanel_includeEntitiesOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveModePanel_includeEntities<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveModePanel_removeBlocksOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveModePanel_removeBlocks<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveModePanel_redstoneSaveOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveModePanel_redstoneSaveMode<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveModePanel_trailingOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mirrorCheckbox<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "label" | "check_box">;
    static mirrorCheckbox_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mirrorCheckbox_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mirrorCheckbox_checkBox<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static mirrorCheckboxes<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "mirror_checkbox_x" | "mirror_checkbox_z">;
    static mirrorCheckboxes_mirrorCheckboxX<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mirrorCheckboxes_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mirrorCheckboxes_mirrorCheckboxZ<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadModePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "remove_blocks" | "include_entities" | "structure_name" | "animation_time_field" | "seed_field" | "integrity_field" | "offset_panel" | "offset_1" | "offset_2" | "include_entities_offset" | "remove_blocks_offset" | "waterlog_blocks" | "waterlog_blocks_offset" | "integrity_offset" | "integrity_label" | "seed_label" | "rotation_slider" | "mirror_label" | "mirror_checkboxes_centerer" | "checkbox_offset" | "animation_mode" | "animation_time_label">;
    static loadModePanel_structureName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadModePanel_offsetPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadModePanel_includeEntitiesOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadModePanel_includeEntities<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadModePanel_removeBlocksOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadModePanel_waterlogBlocks<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadModePanel_waterlogBlocksOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadModePanel_removeBlocks<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadModePanel_integrityOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadModePanel_integrityLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadModePanel_integrityField<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadModePanel_offset1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadModePanel_seedLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadModePanel_seedField<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadModePanel_offset2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadModePanel_rotationSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadModePanel_mirrorLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadModePanel_mirrorCheckboxesCenterer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "mirror_checkboxes">;
    static loadModePanel_mirrorCheckboxesCenterer_mirrorCheckboxes<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadModePanel_checkboxOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadModePanel_animationMode<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadModePanel_animationTimeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadModePanel_animationTimeField<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static dataModePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "data_field" | "top_offset" | "data_label" | "data_label_offset" | "data_field_offset">;
    static dataModePanel_topOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dataModePanel_dataLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static dataModePanel_dataLabelOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dataModePanel_dataField<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static dataModePanel_dataFieldOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cornerModePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "structure_name">;
    static cornerModePanel_structureName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static helpButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "help" | "help_divider">;
    static helpButtonPanel_help<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static helpButtonPanel_helpDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "reset" | "save" | "divider" | "save_divider" | "export" | "export_divider" | "import_divider" | "reset_divider">;
    static saveButtonPanel_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveButtonPanel_save<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveButtonPanel_saveDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveButtonPanel_export<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveButtonPanel_exportDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveButtonPanel_importDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveButtonPanel_reset<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveButtonPanel_resetDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveButtonPanelNoExport<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "reset" | "save" | "divider" | "save_divider" | "reset_divider">;
    static saveButtonPanelNoExport_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveButtonPanelNoExport_save<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveButtonPanelNoExport_saveDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveButtonPanelNoExport_reset<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveButtonPanelNoExport_resetDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "load" | "reset" | "divider" | "export_divider" | "import_divider" | "reset_divider" | "load_divider" | "import">;
    static loadButtonPanel_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadButtonPanel_load<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadButtonPanel_loadDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadButtonPanel_exportDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadButtonPanel_import<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadButtonPanel_importDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadButtonPanel_reset<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadButtonPanel_resetDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadButtonPanelNoExport<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "load" | "reset" | "divider" | "reset_divider" | "load_divider">;
    static loadButtonPanelNoExport_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadButtonPanelNoExport_load<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadButtonPanelNoExport_loadDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadButtonPanelNoExport_reset<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadButtonPanelNoExport_resetDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static _3dExportButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "reset" | "divider" | "import_divider" | "reset_divider" | "import" | "3d_export" | "3d_export_divider">;
    static _3dExportButtonPanel_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static _3dExportButtonPanel_3dExport<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static _3dExportButtonPanel_3dExportDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static _3dExportButtonPanel_import<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static _3dExportButtonPanel_importDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static _3dExportButtonPanel_reset<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static _3dExportButtonPanel_resetDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dataButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "reset" | "divider" | "reset_divider">;
    static dataButtonPanel_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dataButtonPanel_reset<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static dataButtonPanel_resetDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cornerButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "reset_divider">;
    static cornerButtonPanel_resetDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanelWrapper<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "panel">;
    static buttonPanelWrapper_panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "divider" | "how_to_play_button" | "save_panel" | "save_panel_no_export" | "corner_panel" | "load_panel_no_export" | "load_panel" | "3d_export_panel" | "data_panel" | "end_divider">;
    static buttonPanelWrapper_panel_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanelWrapper_panel_savePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanelWrapper_panel_savePanelNoExport<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanelWrapper_panel_cornerPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanelWrapper_panel_loadPanelNoExport<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanelWrapper_panel_loadPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanelWrapper_panel_3dExportPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanelWrapper_panel_dataPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanelWrapper_panel_howToPlayButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanelWrapper_panel_endDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static redstoneDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static redstoneSaveModePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static animationModeDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static animationModeDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureNameWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "structure_name" | "structure_name_offset">;
    static structureNameWrapper_structureName<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureNameWrapper_structureNameOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static detectButtonWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "detect_offset" | "detect">;
    static detectButtonWrapper_detect<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static detectButtonWrapper_detectOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modeDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingPanelWrapper<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static scrollingPanelWrapper_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content_stack_panel">;
    static scrollPanelContent_contentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offset_2" | "3d_export_mode_panel" | "save_mode_panel" | "load_mode_panel" | "data_mode_panel" | "corner_mode_panel" | "mode_panel" | "base_offset" | "mode_panel_offset" | "base_mode_offset" | "show_bounding_box" | "show_bounding_box_offset">;
    static scrollPanelContent_contentStackPanel_baseOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent_contentStackPanel_modePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent_contentStackPanel_modePanelOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent_contentStackPanel_3dExportModePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent_contentStackPanel_saveModePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent_contentStackPanel_loadModePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent_contentStackPanel_dataModePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent_contentStackPanel_cornerModePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent_contentStackPanel_baseModeOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent_contentStackPanel_showBoundingBox<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent_contentStackPanel_showBoundingBoxOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanelContent_contentStackPanel_offset2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftDividerContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static leftDividerContent_scrollingPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static saveMessageText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "save_message_label">;
    static saveMessageText_saveMessageLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static importMessageText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "save_message_label">;
    static importMessageText_saveMessageLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static importFailedMessageText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "save_message_label">;
    static importFailedMessageText_saveMessageLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static exportDisabledLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static imagePanelWrapper<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "image_panel" | "save_message_factory" | "import_message_factory" | "import_failed_message_factory" | "export_disabled">;
    static imagePanelWrapper_imagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imagePanelWrapper_saveMessageFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static imagePanelWrapper_importMessageFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static imagePanelWrapper_importFailedMessageFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static imagePanelWrapper_exportDisabled<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static cornerText<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "image_panel">;
    static cornerText_imagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "border_indent">;
    static imagePanel_borderIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background_gradient" | "progress_panel" | "rotate_arrows" | "image_outline" | "structure_renderer" | "text_corner">;
    static imagePanel_borderIndent_backgroundGradient<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static imagePanel_borderIndent_imageOutline<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static imagePanel_borderIndent_structureRenderer<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imagePanel_borderIndent_textCorner<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imagePanel_borderIndent_progressPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imagePanel_borderIndent_rotateArrows<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "stack_panel">;
    static progressPanel_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label_wrapper" | "progress_bar">;
    static progressPanel_stackPanel_labelWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_label">;
    static progressPanel_stackPanel_labelWrapper_progressLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressPanel_stackPanel_progressBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backgroundGradient<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static cornerTextPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "paragraph_1_corner" | "paragraph_2_corner">;
    static cornerTextPanel_paragraph1Corner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cornerTextPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cornerTextPanel_paragraph2Corner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureRenderer<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "renderer">;
    static structureRenderer_renderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static blackBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static rotationArrows<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightDividerContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "preview" | "button_wrapper" | "base_offset" | "image_offset">;
    static rightDividerContent_baseOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightDividerContent_preview<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightDividerContent_imageOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightDividerContent_buttonWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "buttons">;
    static rightDividerContent_buttonWrapper_buttons<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dividerContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left_side" | "right_side">;
    static dividerContent_leftSide<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dividerContent_rightSide<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureEditorContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content" | "title" | "background_panel">;
    static structureEditorContent_backgroundPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureEditorContent_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureEditorContent_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static structureEditorScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class SubmitFeedback extends Class {
    static sendFeedbackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static writeFeedbackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad_2" | "pad_1" | "write_feedback_label" | "feedback_textbox" | "remaining_characters_panel">;
    static writeFeedbackPanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static writeFeedbackPanel_writeFeedbackLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static writeFeedbackPanel_pad2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static writeFeedbackPanel_feedbackTextbox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static writeFeedbackPanel_remainingCharactersPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "remaining_characters_count_label">;
    static writeFeedbackPanel_remainingCharactersPanel_remainingCharactersCountLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "write_feedback_panel">;
    static scrollPanel_writeFeedbackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static mainPanel_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static submitFeedbackScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static submitFeedbackContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading" | "submit_feedback_main_panel">;
    static submitFeedbackContent_submitFeedbackMainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static submitFeedbackContent_progressLoading<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class TabbedUpsell extends Class {
    static paddingHorizontal<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paddingVertical<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textHorizontalPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedUpsellBuyNowButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedBuyNowLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_label">;
    static tabbedBuyNowLabel_buttonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label_text">;
    static labelPanel_labelText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static textPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "tab_content_description_panel" | "tab_content_title_panel" | "tab_content_description_panel_second">;
    static textPanel_tabContentTitlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textPanel_tabContentDescriptionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textPanel_tabContentDescriptionPanelSecond<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogImageWithBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "dialog_image">;
    static dialogImageWithBorder_dialogImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentImagePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel" | "minecraft_dialog_image_with_border" | "horizontal_padding_01">;
    static contentImagePanel_minecraftDialogImageWithBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentImagePanel_horizontalPadding01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentImagePanel_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollText<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static imagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dialog_image_with_border" | "focus_image">;
    static imagePanel_dialogImageWithBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static imagePanel_focusImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabNavigationPanelLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "navigation_tabs">;
    static tabNavigationPanelLayout_navigationTabs<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static tabNavigationPanelLayout_navigationTabs_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTabNavigationPanelLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "nav_padding_01" | "nav_padding_02" | "nav_padding_03" | "nav_padding_04" | "nav_padding_05" | "nav_padding_06" | "nav_padding_07" | "nav_padding_08" | "server_navigation_tab" | "minecraft_navigation_tab" | "xbl_navigation_tab" | "achievements_navigation_tab3" | "multiplayer_navigation_tab4" | "store_navigation_tab" | "creative_navigation_tab" | "packs_navigation_tab" | "seeds_navigation_tab">;
    static tabbedTabNavigationPanelLayout_minecraftNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_navPadding01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_xblNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_navPadding02<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_achievementsNavigationTab3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_navPadding03<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_multiplayerNavigationTab4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_navPadding04<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_serverNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_navPadding05<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_storeNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_navPadding06<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_creativeNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_navPadding07<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_packsNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_navPadding08<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_seedsNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabContentPanelLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "minecraft_tab_content" | "xbl_tab_content2" | "achievements_tab_content3" | "multiplayer_tab_content4" | "server_tab_content5" | "store_tab_content6" | "creative_tab_content7" | "packs_tab_content8" | "seeds_tab_content9">;
    static tabbedTabContentPanelLayout_minecraftTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabContentPanelLayout_xblTabContent2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabContentPanelLayout_achievementsTabContent3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabContentPanelLayout_multiplayerTabContent4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabContentPanelLayout_serverTabContent5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabContentPanelLayout_storeTabContent6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabContentPanelLayout_creativeTabContent7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabContentPanelLayout_packsTabContent8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabContentPanelLayout_seedsTabContent9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static commonTabContentPanel_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static minecraftTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static achievementsTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static multiplayerTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packsTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static seedsTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTabScreenPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_01" | "tab_navigation_panel" | "tab_content_panel">;
    static commonTabScreenPanel_tabNavigationPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTabScreenPanel_padding01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTabScreenPanel_tabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedScreenPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_5" | "padding_6" | "buy_now_button">;
    static buttonPanel_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel_buyNowButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_3" | "padding_4" | "main_control">;
    static tabPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabPanel_mainControl<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabPanel_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedUpsellContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "button_panel" | "padding_1" | "padding_0" | "padding_2" | "tab_panel">;
    static tabbedUpsellContent_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedUpsellContent_tabPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedUpsellContent_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedUpsellContent_buttonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedUpsellContent_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedUpsellScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedUpsellScreenPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "tabbed_upsell_screen_content">;
    static tabbedUpsellScreenPanel_tabbedUpsellScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedUpsellScreenPanel_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class ThanksForTesting extends Class {
    static paddingHorizontal<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paddingVertical<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textHorizontalPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedUpsellBuyNowButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedBuyNowLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_label">;
    static tabbedBuyNowLabel_buttonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label_text">;
    static labelPanel_labelText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static textPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "tab_content_description_panel" | "tab_content_title_panel" | "tab_content_description_panel_second">;
    static textPanel_tabContentTitlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textPanel_tabContentDescriptionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textPanel_tabContentDescriptionPanelSecond<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogImageWithBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "dialog_image">;
    static dialogImageWithBorder_dialogImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentImagePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel" | "minecraft_dialog_image_with_border" | "horizontal_padding_01">;
    static contentImagePanel_minecraftDialogImageWithBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentImagePanel_horizontalPadding01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentImagePanel_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollText<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static imagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dialog_image_with_border" | "focus_image">;
    static imagePanel_dialogImageWithBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static imagePanel_focusImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabNavigationPanelLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "navigation_tabs">;
    static tabNavigationPanelLayout_navigationTabs<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static tabNavigationPanelLayout_navigationTabs_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTabNavigationPanelLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "nav_padding_01" | "nav_padding_02" | "nav_padding_03" | "nav_padding_04" | "nav_padding_05" | "nav_padding_06" | "nav_padding_07" | "nav_padding_08" | "server_navigation_tab" | "minecraft_navigation_tab" | "xbl_navigation_tab" | "achievements_navigation_tab3" | "multiplayer_navigation_tab4" | "store_navigation_tab" | "creative_navigation_tab" | "packs_navigation_tab" | "seeds_navigation_tab">;
    static tabbedTabNavigationPanelLayout_minecraftNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_navPadding01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_xblNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_navPadding02<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_achievementsNavigationTab3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_navPadding03<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_multiplayerNavigationTab4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_navPadding04<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_serverNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_navPadding05<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_storeNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_navPadding06<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_creativeNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_navPadding07<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_packsNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_navPadding08<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabNavigationPanelLayout_seedsNavigationTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabContentPanelLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "minecraft_tab_content" | "xbl_tab_content2" | "achievements_tab_content3" | "multiplayer_tab_content4" | "server_tab_content5" | "store_tab_content6" | "creative_tab_content7" | "packs_tab_content8" | "seeds_tab_content9">;
    static tabbedTabContentPanelLayout_minecraftTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabContentPanelLayout_xblTabContent2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabContentPanelLayout_achievementsTabContent3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabContentPanelLayout_multiplayerTabContent4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabContentPanelLayout_serverTabContent5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabContentPanelLayout_storeTabContent6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabContentPanelLayout_creativeTabContent7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabContentPanelLayout_packsTabContent8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedTabContentPanelLayout_seedsTabContent9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static commonTabContentPanel_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static minecraftTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static achievementsTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static multiplayerTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storeTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creativeTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packsTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static seedsTabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTabScreenPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_01" | "tab_navigation_panel" | "tab_content_panel">;
    static commonTabScreenPanel_tabNavigationPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTabScreenPanel_padding01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonTabScreenPanel_tabContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedScreenPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_5" | "padding_6" | "buy_now_button">;
    static buttonPanel_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel_buyNowButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_3" | "padding_4" | "main_control">;
    static tabPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabPanel_mainControl<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabPanel_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedUpsellContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "button_panel" | "padding_1" | "padding_0" | "padding_2" | "tab_panel">;
    static tabbedUpsellContent_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedUpsellContent_tabPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedUpsellContent_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedUpsellContent_buttonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedUpsellContent_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static thanksForTestingScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedUpsellScreenPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "tabbed_upsell_screen_content">;
    static tabbedUpsellScreenPanel_tabbedUpsellScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabbedUpsellScreenPanel_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class ThirdPartyStore extends Class {
    static thirdPartyStoreScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class ToastScreen extends Class {
    static toastImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toastIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toast_icon">;
    static toastIcon_toastIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static xboxIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyInviteIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyAchievementIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static personaIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item">;
    static personaIcon_item<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourcePackIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "resource_pack_image">;
    static resourcePackIcon_resourcePackImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyArtImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamerScoreIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toastLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static staticButtonStatePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static staticButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "locked" | "pressed" | "hover">;
    static staticButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static staticButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static staticButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static staticButton_locked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popup<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "background" | "popup_content">;
    static popup_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static popup_popupContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "button_panel" | "text_padding" | "text_panel" | "icon_padding">;
    static popup_popupContent_iconPadding<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popup_popupContent_textPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popup_popupContent_textPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text_stack_panel">;
    static popup_popupContent_textPanel_textStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popup_popupContent_buttonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "visual_button">;
    static popup_popupContent_buttonPanel_visualButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameTipLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static toastProgressBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toast_duration_progress_bar">;
    static toastProgressBar_toastDurationProgressBar<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeUnlockedIcon<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "item_renderer" | "padding_vertical">;
    static recipeUnlockedIcon_paddingVertical<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeUnlockedIcon_itemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeUnlockedPopup<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "input_panel">;
    static recipeUnlockedPopup_inputPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "label_panel">;
    static recipeUnlockedPopup_inputPanel_labelPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label_panel" | "recipe_unlocked_icon" | "horizontal_padding_1" | "horizontal_padding_2" | "horizontal_padding_3">;
    static recipeUnlockedPopup_inputPanel_labelPanel_horizontalPadding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeUnlockedPopup_inputPanel_labelPanel_recipeUnlockedIcon<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeUnlockedPopup_inputPanel_labelPanel_horizontalPadding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeUnlockedPopup_inputPanel_labelPanel_labelPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label" | "padding_vertical_1" | "padding_vertical_2">;
    static recipeUnlockedPopup_inputPanel_labelPanel_labelPanel_paddingVertical1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeUnlockedPopup_inputPanel_labelPanel_labelPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeUnlockedPopup_inputPanel_labelPanel_labelPanel_paddingVertical2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeUnlockedPopup_inputPanel_labelPanel_horizontalPadding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeUnlockedPocketPopup<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "input_panel">;
    static recipeUnlockedPocketPopup_inputPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "label_panel">;
    static recipeUnlockedPocketPopup_inputPanel_labelPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label_panel" | "recipe_unlocked_icon" | "horizontal_padding_1" | "horizontal_padding_2" | "horizontal_padding_3">;
    static recipeUnlockedPocketPopup_inputPanel_labelPanel_horizontalPadding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeUnlockedPocketPopup_inputPanel_labelPanel_recipeUnlockedIcon<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeUnlockedPocketPopup_inputPanel_labelPanel_horizontalPadding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeUnlockedPocketPopup_inputPanel_labelPanel_labelPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label" | "padding_vertical" | "padding_vertical_1">;
    static recipeUnlockedPocketPopup_inputPanel_labelPanel_labelPanel_paddingVertical<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeUnlockedPocketPopup_inputPanel_labelPanel_labelPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeUnlockedPocketPopup_inputPanel_labelPanel_labelPanel_paddingVertical1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeUnlockedPocketPopup_inputPanel_labelPanel_horizontalPadding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title" | "subtitle">;
    static textStackPanel_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static textStackPanel_subtitle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "icon_padding" | "subtext_offset">;
    static textStackPanel_subtitle_iconPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamer_score_icon">;
    static textStackPanel_subtitle_iconPadding_gamerScoreIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static textStackPanel_subtitle_subtextOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "subtext">;
    static textStackPanel_subtitle_subtextOffset_subtext<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static joinButtonIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatPopup<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static splitscreenJoinPopup<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "join_button_icon" | "join_prompt_text_panel">;
    static splitscreenJoinPopup_joinButtonIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static splitscreenJoinPopup_joinPromptTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "join_prompt_text">;
    static splitscreenJoinPopup_joinPromptTextPanel_joinPromptText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static formfittingAlphaToast<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bg">;
    static formfittingAlphaToast_bg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "label">;
    static formfittingAlphaToast_bg_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static snackbar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "body">;
    static snackbar_body<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "background">;
    static snackbar_body_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "content" | "right_shadow">;
    static snackbar_body_background_content<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_padding" | "right_padding" | "vertically_central_text">;
    static snackbar_body_background_content_leftPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static snackbar_body_background_content_verticallyCentralText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "text" | "top_padding">;
    static snackbar_body_background_content_verticallyCentralText_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static snackbar_body_background_content_verticallyCentralText_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static snackbar_body_background_content_rightPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static snackbar_body_background_rightShadow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer" | "gamepad_icon_glyph" | "progress_button_label">;
    static progressButtonContent_gamepadIconGlyph<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressButtonContent_spacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressButtonContent_progressButtonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressPopup<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "background" | "popup_content">;
    static progressPopup_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressPopup_popupContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "end_padding" | "text_padding" | "divider_image" | "progress_toast_image" | "progress_content_vertical_panel" | "divider_padding" | "popup_decline_button">;
    static progressPopup_popupContent_progressToastImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressPopup_popupContent_textPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressPopup_popupContent_progressContentVerticalPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "subtext" | "title_text_label" | "stacked_progress_bar">;
    static progressPopup_popupContent_progressContentVerticalPanel_titleTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressPopup_popupContent_progressContentVerticalPanel_subtext<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressPopup_popupContent_progressContentVerticalPanel_stackedProgressBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressPopup_popupContent_dividerPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressPopup_popupContent_dividerImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressPopup_popupContent_popupDeclineButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressPopup_popupContent_endPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toastScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static toastScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content_log_panel" | "perf_turtle_panel">;
    static toastScreenContent_contentLogPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toastScreenContent_perfTurtlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class TokenFaq extends Class {
    static mainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "faq_question_1" | "faq_question_1_divider" | "faq_question_2" | "faq_question_2_divider" | "faq_question_3" | "faq_question_3_divider" | "faq_question_4" | "faq_question_4_divider" | "faq_question_5">;
    static mainPanel_faqQuestion1<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_faqQuestion1Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_faqQuestion2<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_faqQuestion2Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_faqQuestion3<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_faqQuestion3Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_faqQuestion4<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_faqQuestion4Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_faqQuestion5<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tokenFaqScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dialog">;
    static tokenFaqScreenContent_dialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tokenFaqScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static tokenContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "token_info_text">;
    static tokenContentPanel_tokenInfoText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static tokenPopupContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dialog">;
    static tokenPopupContent_dialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tokenFaqButtonPanel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static backButtonPanel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static tokenPopup<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Trade2 extends Class {
    static toolbarBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrowLeftImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrowRightImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeCellImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static crossOutImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static lockImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollBackgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static redSlash<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static blueProgressBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static whiteProgressBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static emptyProgressBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressBarNub<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static hoverButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "hover_text">;
    static hoverButton_hoverText<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static stackCountLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static changedItemCountLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "stack_count_label" | "second_stack_count_label">;
    static changedItemCountLabel_stackCountLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, "red_slash" | "red_slash_double">;
    static changedItemCountLabel_stackCountLabel_redSlash<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static changedItemCountLabel_stackCountLabel_redSlashDouble<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static changedItemCountLabel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static changedItemCountLabel_secondStackCountLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static singleItemGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "item_with_count">;
    static singleItemGrid_itemWithCount<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item_renderer">;
    static singleItemGrid_itemWithCount_itemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, "stack_count_label" | "hover_button" | "changed_item_count_label">;
    static singleItemGrid_itemWithCount_itemRenderer_stackCountLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static singleItemGrid_itemWithCount_itemRenderer_changedItemCountLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static singleItemGrid_itemWithCount_itemRenderer_hoverButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeItem1<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeItem2<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static sellItem<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrowHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "arrow_image" | "cross_out_image" | "lock_image">;
    static arrowHolder_arrowImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrowHolder_crossOutImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrowHolder_lockImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "trade_item_1" | "trade_item_2" | "padding_1" | "padding_2" | "padding_3" | "padding_4" | "padding_5" | "arrow_holder" | "padding_2_extra" | "padding_3_extra" | "sell_item_holder" | "sell_item_holder_with_less_padding">;
    static toggleContent_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent_tradeItem1<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent_padding2Extra<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent_tradeItem2<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent_padding3Extra<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent_arrowHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent_sellItemHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "sell_item">;
    static toggleContent_sellItemHolder_sellItem<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent_sellItemHolderWithLessPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "sell_item">;
    static toggleContent_sellItemHolderWithLessPadding_sellItem<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContentHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toggle_content">;
    static toggleContentHolder_toggleContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeToggleUnchecked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toggle_checked_normal" | "toggle_checked_red">;
    static tradeToggleUnchecked_toggleCheckedNormal<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeToggleUnchecked_toggleCheckedRed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeToggleChecked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toggle_checked_normal" | "toggle_checked_red">;
    static tradeToggleChecked_toggleCheckedNormal<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeToggleChecked_toggleCheckedRed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeToggleLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeActualToggle<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeToggleHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "trade_toggle">;
    static tradeToggleHolder_tradeToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeToggleStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tierLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static tierLabelLocked<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static tierStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "trade_toggle_stack_panel" | "tier_label_holder">;
    static tierStackPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tierStackPanel_tierLabelHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tier_label" | "tier_label_locked">;
    static tierStackPanel_tierLabelHolder_tierLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static tierStackPanel_tierLabelHolder_tierLabelLocked<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static tierStackPanel_tradeToggleStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeSelectorStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollInnerInputPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "trade_selector_stack_panel">;
    static scrollInnerInputPanel_tradeSelectorStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "bg" | "trade_scroll_panel">;
    static leftPanel_bg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_tradeScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static expProgressBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "empty_progress_bar">;
    static expProgressBar_emptyProgressBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "progress_bar_nub" | "blue_progress_bar" | "white_progress_bar">;
    static expProgressBar_emptyProgressBar_progressBarNub<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static expProgressBar_emptyProgressBar_blueProgressBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static expProgressBar_emptyProgressBar_whiteProgressBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeDetails<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item_panel_image">;
    static tradeDetails_itemPanelImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "item_text_label">;
    static tradeDetails_itemPanelImage_itemTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeDetailsFactoryHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$factory_name">;
    static tradeDetailsFactoryHolder_$factoryName<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeDetailsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeDetails1Button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeDetails2Button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static enchantmentDetailsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeResultItemSlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static redCellImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerCellImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cell_image" | "red_cell_image">;
    static containerCellImage_cellImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerCellImage_redCellImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ingredient1ItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ingredient2ItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultItemSlot<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemSlotHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "trade_details_1_button" | "ingredient_1_item_slot" | "trade_details_1_factory_holder">;
    static itemSlotHolder_ingredient1ItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemSlotHolder_tradeDetails1Button<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemSlotHolder_tradeDetails1FactoryHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemSlotsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "result_item_slot_holder" | "ingredient_item_1_holder" | "ingredient_item_2_holder" | "pointing_right_arrow_holder" | "pointing_left_arrow_holder">;
    static itemSlotsStackPanel_ingredientItem1Holder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemSlotsStackPanel_ingredientItem2Holder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemSlotsStackPanel_pointingRightArrowHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "arrow_right_image">;
    static itemSlotsStackPanel_pointingRightArrowHolder_arrowRightImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemSlotsStackPanel_pointingLeftArrowHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "arrow_left_image">;
    static itemSlotsStackPanel_pointingLeftArrowHolder_arrowLeftImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemSlotsStackPanel_resultItemSlotHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlayButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "item_slots_holder" | "trade_button_holder" | "how_to_play_button_holder">;
    static topHalfStackPanel_itemSlotsHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item_slots_stack_panel">;
    static topHalfStackPanel_itemSlotsHolder_itemSlotsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfStackPanel_tradeButtonHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "trade_button">;
    static topHalfStackPanel_tradeButtonHolder_tradeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfStackPanel_howToPlayButtonHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "how_to_play_button">;
    static topHalfStackPanel_howToPlayButtonHolder_howToPlayButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top_half_stack_panel">;
    static topHalfPanel_topHalfStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static villagerNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "common_panel" | "trade_screen_inventory">;
    static rightPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_tradeScreenInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top_half_panel" | "inventory_panel_bottom_half_with_label" | "hotbar_grid" | "exp_progress_bar" | "villager_name_label">;
    static rightPanel_tradeScreenInventory_villagerNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_tradeScreenInventory_expProgressBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_tradeScreenInventory_topHalfPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_tradeScreenInventory_inventoryPanelBottomHalfWithLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_tradeScreenInventory_hotbarGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "toolbar_background">;
    static toolbarPanel_toolbarBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "toolbar_stack_panel">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "close_button_panel">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_closeButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "close_button">;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_closeButtonPanel_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarPanel_toolbarBackground_toolbarStackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolbarAnchor<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toolbar_panel">;
    static toolbarAnchor_toolbarPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static centerFold<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "center_bg">;
    static centerFold_centerBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_panel" | "right_panel" | "center_fold" | "toolbar_anchor">;
    static screenStackPanel_leftPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenStackPanel_centerFold<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenStackPanel_rightPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenStackPanel_toolbarAnchor<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperX<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperY<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory" | "inventory_selected_icon_button" | "inventory_take_progress_icon_button" | "screen_stack_panel">;
    static screenPanel_screenStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenPanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenPanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenPanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenPanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenPanel_inventoryTakeProgressIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenPanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Trade2Pocket extends Class {
    static chestItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrowRightImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightNavigationTabs<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "fill" | "pocket_tab_close_button">;
    static rightNavigationTabs_pocketTabCloseButton<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightNavigationTabs_fill<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeSlotsPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "item_slots_stack_panel">;
    static tradeSlotsPanel_itemSlotsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeAndHelpButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "trade_button_holder" | "how_to_play_button_holder">;
    static tradeAndHelpButtons_tradeButtonHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "trade_button">;
    static tradeAndHelpButtons_tradeButtonHolder_tradeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeAndHelpButtons_howToPlayButtonHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "how_to_play_button">;
    static tradeAndHelpButtons_howToPlayButtonHolder_howToPlayButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static nameAndTradeSlotsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "trade_slots_panel" | "trade_and_help_buttons" | "villager_name_label_holder" | "exp_progress_bar_holder">;
    static nameAndTradeSlotsStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nameAndTradeSlotsStackPanel_villagerNameLabelHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "villager_name_label">;
    static nameAndTradeSlotsStackPanel_villagerNameLabelHolder_villagerNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static nameAndTradeSlotsStackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nameAndTradeSlotsStackPanel_expProgressBarHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "exp_progress_bar">;
    static nameAndTradeSlotsStackPanel_expProgressBarHolder_expProgressBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nameAndTradeSlotsStackPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nameAndTradeSlotsStackPanel_tradeSlotsPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static nameAndTradeSlotsStackPanel_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nameAndTradeSlotsStackPanel_tradeAndHelpButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content" | "navigation_tabs_holder">;
    static rightPanel_content<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "bg" | "name_and_trade_slots_stack_panel">;
    static rightPanel_content_bg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_content_nameAndTradeSlotsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightPanel_navigationTabsHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "right_navigation_tabs">;
    static rightPanel_navigationTabsHolder_rightNavigationTabs<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftTabTrade<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftTabInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftNavigationTabs<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "left_tab_inventory" | "left_tab_trades">;
    static leftNavigationTabs_leftTabTrades<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftNavigationTabs_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftNavigationTabs_leftTabInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrowHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "arrow_image" | "cross_out_image" | "lock_image">;
    static arrowHolder_arrowImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrowHolder_crossOutImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrowHolder_lockImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "arrow_holder" | "sell_item_holder" | "trade_item_holder">;
    static toggleContent_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent_tradeItemHolder<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "trade_item_1" | "trade_item_2" | "padding_middle" | "padding_right" | "padding_left">;
    static toggleContent_tradeItemHolder_paddingLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent_tradeItemHolder_tradeItem1<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent_tradeItemHolder_paddingMiddle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent_tradeItemHolder_tradeItem2<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent_tradeItemHolder_paddingRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent_arrowHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent_sellItemHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "sell_item">;
    static toggleContent_sellItemHolder_sellItem<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContent_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content" | "gamepad_helpers_and_tabs_holder">;
    static leftPanel_gamepadHelpersAndTabsHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "navigation_tabs_holder" | "tabs_left_gamepad_helpers">;
    static leftPanel_gamepadHelpersAndTabsHolder_tabsLeftGamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_gamepadHelpersAndTabsHolder_navigationTabsHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left_navigation_tabs">;
    static leftPanel_gamepadHelpersAndTabsHolder_navigationTabsHolder_leftNavigationTabs<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_content<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "bg" | "inventory_scroll_panel" | "trade_scroll_panel">;
    static leftPanel_content_bg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_content_inventoryScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_content_tradeScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketHotbarAndContentPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory" | "inventory_selected_icon_button" | "inventory_take_progress_icon_button" | "pocket_hotbar_and_content_panels">;
    static screenPanel_pocketHotbarAndContentPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenPanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenPanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenPanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenPanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenPanel_inventoryTakeProgressIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenPanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Trade extends Class {
    static cycleRecipeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cycleRecipeLeftButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cycleRecipeRightButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrowImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static crossOutIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static highlightSlotPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hover_text">;
    static highlightSlotPanel_hoverText<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "hover">;
    static recipeButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeItemPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item_renderer" | "recipe_button">;
    static recipeItemPanel_itemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, "stack_count_label">;
    static recipeItemPanel_itemRenderer_stackCountLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeItemPanel_recipeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "container_item">;
    static tradeItemSlot_containerItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeItemSlotB<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeItemSlotResultButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeItemSlotResult<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrow<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cross_out_icon" | "arrow_image" | "recipe_button">;
    static arrow_arrowImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrow_crossOutIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrow_recipeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseGridItem<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "top_item" | "bottom_item">;
    static purchaseGridItem_topItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseGridItem_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseGridItem_bottomItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "result_item_slot" | "arrow" | "grid_slot1" | "grid_slot2">;
    static purchaseGrid_gridSlot1<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseGrid_gridSlot2<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseGrid_arrow<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseGrid_resultItemSlot<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static greyedItemPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item_renderer">;
    static greyedItemPanel_itemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static cyclePanelKeyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left" | "right">;
    static cyclePanelKeyboard_left<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cyclePanelKeyboard_right<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cyclePanelGamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left" | "right">;
    static cyclePanelGamepad_left<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cyclePanelGamepad_right<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static cyclePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad" | "keyboard">;
    static cyclePanel_keyboard<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static cyclePanel_gamepad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static merchantPurchasePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "purchase_grid">;
    static merchantPurchasePanel_purchaseGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "villager_name_label" | "cycle_panel" | "merchant_purchase_panel">;
    static topHalfPanel_villagerNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfPanel_cyclePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topHalfPanel_merchantPurchasePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "flying_item_renderer" | "gamepad_helpers" | "root_panel" | "selected_item_details_factory" | "item_lock_notification_factory">;
    static tradePanel_gamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradePanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradePanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradePanel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "common_panel" | "trade_inventory">;
    static tradePanel_rootPanel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradePanel_rootPanel_tradeInventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_cursor" | "top_half_panel" | "inventory_selected_icon_button" | "inventory_panel_bottom_half_with_label" | "hotbar_grid_template">;
    static tradePanel_rootPanel_tradeInventory_topHalfPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradePanel_rootPanel_tradeInventory_inventoryPanelBottomHalfWithLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradePanel_rootPanel_tradeInventory_hotbarGridTemplate<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradePanel_rootPanel_tradeInventory_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradePanel_rootPanel_tradeInventory_gamepadCursor<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradePanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class TradePocket extends Class {
    static backgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static recipeItemPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item_renderer">;
    static recipeItemPanel_itemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, "stack_count_label">;
    static recipeItemPanel_itemRenderer_stackCountLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultItemPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "recipe_item_panel" | "output_item_name">;
    static resultItemPanel_outputItemName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static resultItemPanel_recipeItemPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeItemSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "container_item">;
    static tradeItemSlot_containerItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeItemSlotB<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeItemSlotResultButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradeItemSlotResult<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, "result_item_slot" | "arrow" | "grid_slot1" | "grid_slot2">;
    static purchaseGrid_gridSlot1<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseGrid_gridSlot2<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseGrid_arrow<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseGrid_resultItemSlot<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static merchantPurchasePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left" | "right" | "purchase_grid">;
    static merchantPurchasePanel_left<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static merchantPurchasePanel_purchaseGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static merchantPurchasePanel_right<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static merchantPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "merchant_purchase_panel">;
    static merchantPanel_merchantPurchasePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static inventoryContent_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static halfScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryHalfScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_content">;
    static inventoryHalfScreen_inventoryContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static merchantHalfScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "merchant_panel">;
    static merchantHalfScreen_merchantPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "header_background" | "close_button" | "villager_name_label">;
    static header_headerBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static header_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static header_villagerNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradePanel<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, "header" | "flying_item_renderer" | "gamepad_helpers" | "root_panel" | "container_gamepad_helpers" | "selected_item_details_factory" | "item_lock_notification_factory" | "inventory_selected_icon_button" | "bg" | "inventory" | "merchant_half_screen">;
    static tradePanel_bg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradePanel_rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradePanel_header<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradePanel_inventory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradePanel_merchantHalfScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradePanel_gamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradePanel_containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradePanel_inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradePanel_selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradePanel_itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static tradePanel_flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class TrialUpsell extends Class {
    static normalStrokeButton<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static normalDescriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialTime<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialDescriptionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "description_text">;
    static trialDescriptionPanel_descriptionText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialExpiredDescriptionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "vertical_padding_1" | "vertical_padding_0" | "line1" | "line2" | "line3" | "line4" | "line5">;
    static trialExpiredDescriptionPanel_verticalPadding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialExpiredDescriptionPanel_line1<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialExpiredDescriptionPanel_verticalPadding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialExpiredDescriptionPanel_line2<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialExpiredDescriptionPanel_line3<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialExpiredDescriptionPanel_line4<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialExpiredDescriptionPanel_line5<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static continueButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialUpsellScreenDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialUpsellExpiredScreenDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "continue" | "buy">;
    static buttonContentPanel_buy<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonContentPanel_continue<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialUpsellScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialUpsellScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "root_panel" | "trialTime">;
    static trialUpsellScreenContent_trialTime<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialUpsellScreenContent_rootPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "trial_upsell_screen_dialog">;
    static trialUpsellScreenContent_rootPanel_trialUpsellScreenDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialUpsellExpiredScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialUpsellExpiredScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "root_panel" | "trialTime">;
    static trialUpsellExpiredScreenContent_trialTime<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialUpsellExpiredScreenContent_rootPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "trial_upsell_expired_screen_dialog">;
    static trialUpsellExpiredScreenContent_rootPanel_trialUpsellExpiredScreenDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentDescriptionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static contentDescriptionPanel_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class UgcViewer extends Class {
    static padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack_panel">;
    static buttonContent_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "world_panel" | "world_label">;
    static buttonContent_stackPanel_worldLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonContent_stackPanel_worldPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background">;
    static buttonContent_stackPanel_worldPanel_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "world_image">;
    static buttonContent_stackPanel_worldPanel_background_worldImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button">;
    static gridItem_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static placeHolderControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "place_holder_text" | "search_icon">;
    static placeHolderControl_searchIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static placeHolderControl_placeHolderText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridContent<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "grid_content">;
    static scrollingContent_gridContent<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "padding_2" | "centerer_panel_0" | "centerer_panel_1">;
    static mainPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_centererPanel0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "search_box">;
    static mainPanel_centererPanel0_searchBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_centererPanel1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static mainPanel_centererPanel1_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ugcViewerScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel">;
    static screenContent_mainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CommonArt extends Class {
    static titleImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleImageEdu<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static splashText<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static titlePanelPocket<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_image" | "splash_text">;
    static titlePanelPocket_titleImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static titlePanelPocket_splashText<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static titlePanelWin10<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_image" | "splash_text">;
    static titlePanelWin10_titleImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static titlePanelWin10_splashText<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static titlePanelOsx<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_image" | "splash_text">;
    static titlePanelOsx_titleImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static titlePanelOsx_splashText<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static titlePanelEduDesktop<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "banner_control" | "title_control">;
    static titlePanelEduDesktop_bannerControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "banner" | "drop_shadow">;
    static titlePanelEduDesktop_bannerControl_banner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static titlePanelEduDesktop_bannerControl_dropShadow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static titlePanelEduDesktop_titleControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_image_edu" | "splash_text">;
    static titlePanelEduDesktop_titleControl_titleImageEdu<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static titlePanelEduDesktop_titleControl_splashText<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static titlePanelEduMobile<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_control">;
    static titlePanelEduMobile_titleControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_image_edu" | "splash_text">;
    static titlePanelEduMobile_titleControl_titleImageEdu<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static titlePanelEduMobile_titleControl_splashText<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static titlePanelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$title_panel">;
    static titlePanelContent_$titlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static startTitlePanelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$title_panel">;
    static startTitlePanelContent_$titlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pauseLogoPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "logo">;
    static pauseLogoPanel_logo<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Common extends Class {
    static emptyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalPadding8px<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalPadding2px<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static emptyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static vertStackCenteringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack_content">;
    static vertStackCenteringPanel_stackContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenHeaderTitlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "store_header_title">;
    static screenHeaderTitlePanel_storeHeaderTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static backButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static backTitleButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding1" | "panel1" | "panel2">;
    static backTitleButton_panel1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button">;
    static backTitleButton_panel1_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static backTitleButton_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backTitleButton_panel2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static backTitleButton_panel2_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static chevronImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static backButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding1" | "label_panel" | "chevron_panel">;
    static backButtonContent_chevronPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left_chevron">;
    static backButtonContent_chevronPanel_leftChevron<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static backButtonContent_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backButtonContent_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static backButtonContent_labelPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static labelHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hover">;
    static labelHover_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static ttsActivateSibling<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static ttsActivateSibling_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ttsActivateSibling_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ttsActivateSibling_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backTitleButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding1" | "padding2" | "chevron_panel">;
    static backTitleButtonContent_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backTitleButtonContent_chevronPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left_chevron">;
    static backTitleButtonContent_chevronPanel_leftChevron<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static backTitleButtonContent_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleVisuals<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "unchecked" | "unchecked_locked" | "checked" | "checked_hover" | "unchecked_hover" | "checked_locked" | "checked_locked_hover" | "unchecked_locked_hover">;
    static toggleVisuals_unchecked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleVisuals_checked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleVisuals_uncheckedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleVisuals_checkedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleVisuals_uncheckedLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleVisuals_checkedLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleVisuals_uncheckedLockedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleVisuals_checkedLockedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggle<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioToggle<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkbox<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkedImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static uncheckedImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkedHoverImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static uncheckedHoverImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static rotatingText<T extends Types = Types.CarouselLabel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleStateTemplate<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static newButtonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxCheckedState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxUncheckedState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxCheckedHoverState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxUncheckedHoverState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxCheckedLockedState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxUncheckedLockedState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioToggleCheckedState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioToggleUncheckedState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioToggleCheckedHoverState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioToggleUncheckedHoverState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioToggleCheckedLockedState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioToggleUncheckedLockedState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sliderButtonState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sliderButtonLayout<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sliderButtonHoverLayout<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sliderButtonLockedLayout<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sliderButtonIndentLayout<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sliderBox<T extends Types = Types.SliderBox>(properties?: PropertiesType[T]): Modify<T, "default" | "indent" | "locked" | "hover">;
    static sliderBox_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sliderBox_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sliderBox_indent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sliderBox_locked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "transparent_grey">;
    static sliderBox_locked_transparentGrey<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sliderBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sliderBackgroundHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sliderProgress<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sliderProgressHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sliderBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sliderBarDefault<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "sizing_panel" | "transparent_grey">;
    static sliderBarDefault_sizingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$background_control_name" | "$progress_control_name">;
    static sliderBarDefault_sizingPanel_$backgroundControlName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sliderBarDefault_sizingPanel_$progressControlName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sliderBarDefault_transparentGrey<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sliderBarHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sliderStep<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sliderStepHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sliderStepProgress<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sliderStepProgressHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static slider<T extends Types = Types.Slider>(properties?: PropertiesType[T]): Modify<T, "slider_box" | "slider_bar_default" | "slider_bar_hover">;
    static slider_sliderBox<T extends Types = Types.SliderBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static slider_sliderBarDefault<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static slider_sliderBarHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$dropdown_name" | "dropdown_content">;
    static dropdown_$dropdownName<T extends Types = Types.Dropdown>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdown_dropdownContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "0">;
    static dropdown_dropdownContent_0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropdownNoScrollpanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static squareImageBorderWhite<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static focusBorderWhite<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static focusBorderYellow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static focusBorderBlack<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static nonInteractFocusBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static nonInteractFocusBorderButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "content" | "pressed" | "hover">;
    static nonInteractFocusBorderButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nonInteractFocusBorderButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nonInteractFocusBorderButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nonInteractFocusBorderButton_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ttsLabelFocusWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label" | "focus_border">;
    static ttsLabelFocusWrapper_label<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ttsLabelFocusWrapper_focusBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultIndent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static editBoxIndent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static editBoxIndentHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static transparentEditBoxIndent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static transparentEditBoxIndentHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditBoxLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditBoxPlaceHolderLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static textMagnifyingGlassImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static textCloseXButtonImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static textCloseXButtonImageHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static clearTextButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static clearTextButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static clearTextButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static clearTextButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, "default" | "locked" | "pressed" | "hover" | "centering_panel">;
    static textEditBox_centeringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "clipper_panel">;
    static textEditBox_centeringPanel_clipperPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "visibility_panel" | "$text_edit_text_control" | "magnifying_glass" | "clear_text_button_panel">;
    static textEditBox_centeringPanel_clipperPanel_$textEditTextControl<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditBox_centeringPanel_clipperPanel_magnifyingGlass<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditBox_centeringPanel_clipperPanel_clearTextButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "clear_text_button">;
    static textEditBox_centeringPanel_clipperPanel_clearTextButtonPanel_clearTextButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditBox_centeringPanel_clipperPanel_visibilityPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "place_holder_control">;
    static textEditBox_centeringPanel_clipperPanel_visibilityPanel_placeHolderControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditBox_locked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "edit_box_indent">;
    static textEditBox_locked_editBoxIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditBox_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditBox_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditBox_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textEditBoxScrollingContent<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "$text_edit_text_control">;
    static textEditBoxScrollingContent_$textEditTextControl<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableTextEditBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, "default" | "locked" | "pressed" | "hover" | "centering_panel">;
    static scrollableTextEditBox_centeringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "clipper_panel">;
    static scrollableTextEditBox_centeringPanel_clipperPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "visibility_panel" | "text_edit_text_control">;
    static scrollableTextEditBox_centeringPanel_clipperPanel_textEditTextControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableTextEditBox_centeringPanel_clipperPanel_visibilityPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "place_holder_control">;
    static scrollableTextEditBox_centeringPanel_clipperPanel_visibilityPanel_placeHolderControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableTextEditBox_locked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "edit_box_indent">;
    static scrollableTextEditBox_locked_editBoxIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableTextEditBox_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableTextEditBox_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableTextEditBox_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transparentTextEditBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, "default" | "locked" | "pressed" | "hover" | "clipper_panel">;
    static transparentTextEditBox_clipperPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "visibility_panel" | "$text_edit_text_control">;
    static transparentTextEditBox_clipperPanel_$textEditTextControl<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static transparentTextEditBox_clipperPanel_visibilityPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "place_holder_control">;
    static transparentTextEditBox_clipperPanel_visibilityPanel_placeHolderControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transparentTextEditBox_locked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "edit_box_indent">;
    static transparentTextEditBox_locked_editBoxIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transparentTextEditBox_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transparentTextEditBox_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transparentTextEditBox_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static multilineTextEditBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableMultilineTextEditBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static dirtBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static portalBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static emptyProgressBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static filledProgressBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static emptyProgressBarBeveled<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressBarBeveledOverlay<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static filledProgressBarForCollections<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "empty_progress_bar" | "filled_progress_bar">;
    static progressBar_emptyProgressBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressBar_filledProgressBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressBarForCollections<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "empty_progress_bar" | "filled_progress_bar_for_collections">;
    static progressBarForCollections_emptyProgressBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressBarForCollections_filledProgressBarForCollections<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "divider_image">;
    static horizontalDivider_dividerImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "divider_image">;
    static verticalDivider_dividerImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static underline<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static singleLineLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label_panel">;
    static singleLineLabel_labelPanel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, "0">;
    static singleLineLabel_labelPanel_0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperIconDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperIconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardHelperIconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "icon_panel" | "description_panel">;
    static gamepadHelper_iconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$icon_image_ref">;
    static gamepadHelper_iconPanel_$iconImageRef<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelper_descriptionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "desc">;
    static gamepadHelper_descriptionPanel_desc<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpersAAndB<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_a" | "gamepad_helper_b" | "control">;
    static gamepadHelpersAAndB_gamepadHelperA<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpersAAndB_control<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpersAAndB_gamepadHelperB<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerGamepadHelpers<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "buttons" | "fill_panel" | "buffer_panel_right">;
    static containerGamepadHelpers_fillPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerGamepadHelpers_buttons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_a" | "gamepad_helper_b" | "gamepad_helper_y" | "gamepad_helper_x">;
    static containerGamepadHelpers_buttons_gamepadHelperX<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerGamepadHelpers_buttons_gamepadHelperA<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerGamepadHelpers_buttons_gamepadHelperY<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerGamepadHelpers_buttons_gamepadHelperB<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerGamepadHelpers_bufferPanelRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabsLeftGamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_left_bumper" | "gamepad_helper_left_trigger">;
    static tabsLeftGamepadHelpers_gamepadHelperLeftBumper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabsLeftGamepadHelpers_gamepadHelperLeftTrigger<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabsRightGamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_right_bumper" | "gamepad_helper_right_trigger">;
    static tabsRightGamepadHelpers_gamepadHelperRightBumper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabsRightGamepadHelpers_gamepadHelperRightTrigger<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardHelperDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardHelper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "centerer" | "image_centerer">;
    static keyboardHelper_imageCenterer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image">;
    static keyboardHelper_imageCenterer_image<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "keyboard_character">;
    static keyboardHelper_imageCenterer_image_keyboardCharacter<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardHelper_centerer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "desc">;
    static keyboardHelper_centerer_desc<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadIconButton<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperStart<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperA<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperA14<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperB<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperB14<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperX<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperX14<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperY<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperY14<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardHelperKeys<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperLeftTrigger<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperRightTrigger<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardLeftTrigger<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardRightTrigger<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadIconDpad<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperDpad<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperDpadDown<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperDpadLeft<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperDpadRight<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperDpadUp<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadIconThumbstick<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperThumbstick<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperThumbstickRight<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperThumbstickLeft<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperLeftBumper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelperRightBumper<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundCommon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundHollowCommon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "control">;
    static dialogBackgroundHollowCommon_control<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundOpaque<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundHollow1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundHollow2<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundHollow3<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundHollow4<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundHollow4Thin<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundHollow5<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundHollow6<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundHollow7<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundHollow8<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static normalButton<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static normalStrokeButton<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionHeadingLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionDivider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding1" | "padding2" | "divider_parent">;
    static sectionDivider_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionDivider_dividerParent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "divider">;
    static sectionDivider_dividerParent_divider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionDivider_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static minecraftTenLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "close_button_image">;
    static closeButtonPanel_closeButtonImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static closeButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonGreyBg<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static closeButtonGreyBg_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonGreyBg_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonGreyBg_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonHighContrast<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "background" | "pressed" | "hover">;
    static closeButtonHighContrast_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonHighContrast_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonHighContrast_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static closeButtonHighContrast_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static compactCloseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static compactCloseButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static compactCloseButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static compactCloseButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightCloseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static lightCloseButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightCloseButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightCloseButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static helpButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static helpButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static helpButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static helpButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cellImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cellImageSelected<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cellImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "cell_image" | "cell_image_selected">;
    static cellImagePanel_cellImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cellImagePanel_cellImageSelected<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static cellOverlay<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static highlightSlot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static whiteBorderSlot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressiveSelectProgressBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack_progress_bar_down">;
    static progressiveSelectProgressBar_stackProgressBarDown<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "progressive_select_text" | "progressive_select_progress_bar">;
    static progressiveSelectProgressBar_stackProgressBarDown_progressiveSelectProgressBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static progressiveSelectProgressBar_stackProgressBarDown_progressiveSelectText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static stackSplittingOverlay<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "classic_stack_splitting_overlay" | "pocket_stack_splitting_overlay">;
    static stackSplittingOverlay_classicStackSplittingOverlay<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack_splitting_bar">;
    static stackSplittingOverlay_classicStackSplittingOverlay_stackSplittingBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static stackSplittingOverlay_pocketStackSplittingOverlay<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack_splitting_bar">;
    static stackSplittingOverlay_pocketStackSplittingOverlay_stackSplittingBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryHoldIconHolding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progressive_down" | "progressive_up" | "progressive_left_side" | "progressive_right_side">;
    static inventoryHoldIconHolding_progressiveDown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryHoldIconHolding_progressiveUp<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryHoldIconHolding_progressiveLeftSide<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryHoldIconHolding_progressiveRightSide<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryHoldIconRelease<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static highlightSlotPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "highlight" | "white_border">;
    static highlightSlotPanel_highlight<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "hover_text">;
    static highlightSlotPanel_highlight_hoverText<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static highlightSlotPanel_whiteBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketUiHighlightSlot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static hoverText<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static stackCountLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static durabilityBar<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static durabilityBarGrabbed<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageBar<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageBarGrabbed<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static filteredItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static flyingItemRenderer<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedItemDetails<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item_panel_image">;
    static selectedItemDetails_itemPanelImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemPanelImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "item_text_label">;
    static itemPanelImage_itemTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectedItemDetailsFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemLockNotification<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "notification_background_image">;
    static itemLockNotification_notificationBackgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "notification_text_label">;
    static itemLockNotification_notificationBackgroundImage_notificationTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemLockNotificationFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static emptyPanelSizeY0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollBackgroundAndViewport<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "scrolling_view_port">;
    static scrollBackgroundAndViewport_background<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollBackgroundAndViewport_scrollingViewPort<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_content">;
    static scrollBackgroundAndViewport_scrollingViewPort_scrollingContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollBarAndTrack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack_panel">;
    static scrollBarAndTrack_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "panel" | "empty_panel_0" | "empty_panel_1">;
    static scrollBarAndTrack_stackPanel_emptyPanel0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollBarAndTrack_stackPanel_panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "centered_panel">;
    static scrollBarAndTrack_stackPanel_panel_centeredPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "track" | "scroll_box">;
    static scrollBarAndTrack_stackPanel_panel_centeredPanel_track<T extends Types = Types.ScrollTrack>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollBarAndTrack_stackPanel_panel_centeredPanel_scrollBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollBarAndTrack_stackPanel_emptyPanel1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollViewControl<T extends Types = Types.ScrollView>(properties?: PropertiesType[T]): Modify<T, "panel" | "stack_panel">;
    static scrollViewControl_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "background_and_viewport" | "bar_and_track">;
    static scrollViewControl_stackPanel_backgroundAndViewport<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollViewControl_stackPanel_barAndTrack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollViewControl_panel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background_and_viewport" | "bar_and_track">;
    static scrollViewControl_panel_backgroundAndViewport<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollViewControl_panel_barAndTrack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollbarTrack<T extends Types = Types.ScrollTrack>(properties?: PropertiesType[T]): Modify<T, "bar_indent">;
    static scrollbarTrack_barIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "box">;
    static scrollBox_box<T extends Types = Types.ScrollbarBox>(properties?: PropertiesType[T]): Modify<T, "mouse_box" | "touch_box">;
    static scrollBox_box_mouseBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollBox_box_touchBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollBoxIndent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollbarBoxImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchScrollbarBoxImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static newTouchScrollbarBoxImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerTouchScrollbarBoxImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollIndentImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingPanelBase<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "$scroll_view_name">;
    static scrollingPanelBase_$scrollViewName<T extends Types = Types.ScrollView>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scroll_touch" | "scroll_mouse">;
    static scrollingPanel_scrollTouch<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingPanel_scrollMouse<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingPanelWithOffset<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerSlotButtonPrototype<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "hover">;
    static containerSlotButtonPrototype_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noCoalesceContainerSlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketUiContainerSlot<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "hover">;
    static pocketUiContainerSlot_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "highlight_square">;
    static pocketUiContainerSlot_hover_highlightSquare<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static slotSelected<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "progress_bar_release">;
    static slotSelected_progressBarRelease<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "bundle_slot_panel" | "container_item_lock_overlay" | "item_lock_cell_image" | "item_cell" | "item_cell_overlay_ref" | "item_selected_image" | "item_button_ref">;
    static containerItem_itemCell<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "item" | "storage_bar" | "$background_image_control_name" | "durability_bar">;
    static containerItem_itemCell_$backgroundImageControlName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerItem_itemCell_item<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack_count_label" | "$item_renderer">;
    static containerItem_itemCell_item_stackCountLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerItem_itemCell_item_$itemRenderer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerItem_itemCell_durabilityBar<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerItem_itemCell_storageBar<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerItem_itemCellOverlayRef<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerItem_itemSelectedImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerItem_itemButtonRef<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerItem_containerItemLockOverlay<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerItem_itemLockCellImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerItem_bundleSlotPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketUiContainerItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketUiLargeContainerItem<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerItemLockYellow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerItemLockRed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerItemLockOverlay<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "container_item_lock_yellow" | "container_item_lock_red">;
    static containerItemLockOverlay_containerItemLockYellow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerItemLockOverlay_containerItemLockRed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static itemLockCellImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketContainerGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerScrollBoxImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerScrollBarSideRails<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerScrollbarTrack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "rails">;
    static containerScrollbarTrack_rails<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerScrollBackgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static containerScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketUiHighlightSelectedSlot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketHotbarPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "hotbar_grid" | "bg">;
    static pocketHotbarPanel_bg<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketHotbarPanel_hotbarGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static dropItemPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketHotbarAndContentPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pocket_content_panels" | "hotbar_drop_item_panel">;
    static pocketHotbarAndContentPanels_pocketContentPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketHotbarAndContentPanels_hotbarDropItemPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "pocket_hotbar_panel">;
    static pocketHotbarAndContentPanels_hotbarDropItemPanel_pocketHotbarPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static blankPocketContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketContentPanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_panel" | "right_panel" | "offset_panel">;
    static pocketContentPanels_leftPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketContentPanels_offsetPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "center_bg">;
    static pocketContentPanels_offsetPanel_centerBg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketContentPanels_rightPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySelectedIcon<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySelectedStackSizeText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryHoldIcon<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySelectedItemLockOverlay<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "container_item_lock_yellow" | "container_item_lock_red">;
    static inventorySelectedItemLockOverlay_containerItemLockYellow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySelectedItemLockOverlay_containerItemLockRed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hover_text" | "selected_item_icon" | "selected_stack_size_text" | "selected_item_lock_overlay">;
    static inventoryIconPanel_selectedItemIcon<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryIconPanel_selectedStackSizeText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryIconPanel_selectedItemLockOverlay<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryIconPanel_hoverText<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySelectedIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover" | "durability_bar_grabbed" | "storage_bar_grabbed">;
    static inventorySelectedIconButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySelectedIconButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySelectedIconButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySelectedIconButton_durabilityBarGrabbed<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventorySelectedIconButton_storageBarGrabbed<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryTakeProgressIconButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static inventoryTakeProgressIconButton_default<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryTakeProgressIconButton_pressed<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryTakeProgressIconButton_hover<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadCursorImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadCursorButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static gamepadCursorButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadCursorButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadCursorButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridItemForInventory<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridItemForHotbar<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarGridTemplate<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_grid">;
    static inventoryPanel_inventoryGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryPanelBottomHalf<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_panel">;
    static inventoryPanelBottomHalf_inventoryPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryPanelBottomHalfWithLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inventory_panel" | "inventory_label">;
    static inventoryPanelBottomHalfWithLabel_inventoryPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryPanelBottomHalfWithLabel_inventoryLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bg_image" | "dialog_divider" | "close_button_holder">;
    static commonPanel_bgImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonPanel_dialogDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonPanel_closeButtonHolder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "close" | "compact_close">;
    static commonPanel_closeButtonHolder_close<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonPanel_closeButtonHolder_compactClose<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static rootPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenEntranceSizeAnimationPush<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenEntranceSizeAnimationPop<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadingBarInitAnimationPop<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, "variables_button_mappings_and_controls" | "loading_bars_background">;
    static baseScreen_variablesButtonMappingsAndControls<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "screen_background" | "bg_no_safezone_screen_panel" | "safezone_screen_matrix">;
    static baseScreen_variablesButtonMappingsAndControls_bgNoSafezoneScreenPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseScreen_variablesButtonMappingsAndControls_safezoneScreenMatrix<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseScreen_variablesButtonMappingsAndControls_screenBackground<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseScreen_loadingBarsBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "loading_bars">;
    static baseScreen_loadingBarsBackground_loadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static renderBelowBaseScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static safezoneBuffer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topSafezoneVerticalBuffer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bottomSafezoneVerticalBuffer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftSafezoneHorizontalBuffer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightSafezoneHorizontalBuffer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static safeZoneStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_outer_control" | "top_inner_control" | "header_bar">;
    static safeZoneStack_topOuterControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static safeZoneStack_topInnerControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static safeZoneStack_headerBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static safezoneInnerMatrix<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "outer_top" | "inner_top" | "safezone_screen_panel" | "inner_bottom" | "outer_bottom">;
    static safezoneInnerMatrix_outerTop<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top_side_control">;
    static safezoneInnerMatrix_outerTop_topSideControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static safezoneInnerMatrix_innerTop<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top_side_control">;
    static safezoneInnerMatrix_innerTop_topSideControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static safezoneInnerMatrix_safezoneScreenPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static safezoneInnerMatrix_innerBottom<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static safezoneInnerMatrix_outerBottom<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static safezoneOuterMatrix<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "outer_left" | "inner_left" | "inner_matrix" | "inner_right" | "outer_right">;
    static safezoneOuterMatrix_outerLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "outer_left_safe_zone_stack">;
    static safezoneOuterMatrix_outerLeft_outerLeftSafeZoneStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static safezoneOuterMatrix_innerLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inner_left_safe_zone_stack">;
    static safezoneOuterMatrix_innerLeft_innerLeftSafeZoneStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static safezoneOuterMatrix_innerMatrix<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static safezoneOuterMatrix_innerRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inner_right_safe_zone_stack">;
    static safezoneOuterMatrix_innerRight_innerRightSafeZoneStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static safezoneOuterMatrix_outerRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "outer_right_safe_zone_stack">;
    static safezoneOuterMatrix_outerRight_outerRightSafeZoneStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltipWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bundle_touch_tooltip" | "bundle_tooltip_factory_wrapper">;
    static bundleTooltipWrapper_bundleTooltipFactoryWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bundleTooltipWrapper_bundleTouchTooltip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "popup_dialog_factory" | "root_screen_panel" | "additional_screen_content" | "bundle_hover_tooltip">;
    static screenPanel_rootScreenPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenPanel_additionalScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenPanel_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenPanel_bundleHoverTooltip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseScreenEmptyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsErrorModalScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalAreaPanelBase<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inactiveModalPaneFade<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inventoryScreenCommon<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static fullscreenHeader<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_bar" | "child_control">;
    static fullscreenHeader_topBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "title_stack_panel">;
    static fullscreenHeader_topBar_titleStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding1" | "padding2" | "back_button_content_panel">;
    static fullscreenHeader_topBar_titleStackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fullscreenHeader_topBar_titleStackPanel_backButtonContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fullscreenHeader_topBar_titleStackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fullscreenHeader_childControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "back_button">;
    static backContentPanel_backButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static topBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tooltipBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tooltipButtonContent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "tooltip_panel_content">;
    static tooltipButtonContent_tooltipPanelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static staticTooltipPopupWithImageAndText<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "image_and_text_stack_panel" | "tooltip_chevron">;
    static staticTooltipPopupWithImageAndText_imageAndTextStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "tooltip_text" | "tooltip_text_image_panel">;
    static staticTooltipPopupWithImageAndText_imageAndTextStackPanel_tooltipTextImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tooltip_image_panel">;
    static staticTooltipPopupWithImageAndText_imageAndTextStackPanel_tooltipTextImagePanel_tooltipImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "0">;
    static staticTooltipPopupWithImageAndText_imageAndTextStackPanel_tooltipTextImagePanel_tooltipImagePanel_0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static staticTooltipPopupWithImageAndText_imageAndTextStackPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static staticTooltipPopupWithImageAndText_imageAndTextStackPanel_tooltipText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static staticTooltipPopupWithImageAndText_tooltipChevron<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicTooltipPopupWithCustomContent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "tooltip_chevron" | "tooltip_content">;
    static dynamicTooltipPopupWithCustomContent_tooltipContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicTooltipPopupWithCustomContent_tooltipChevron<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicTooltipPopupWithImageAndText<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "image_and_text_stack_panel" | "tooltip_chevron">;
    static dynamicTooltipPopupWithImageAndText_imageAndTextStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "tooltip_text" | "tooltip_text_image_panel">;
    static dynamicTooltipPopupWithImageAndText_imageAndTextStackPanel_tooltipTextImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tooltip_image_panel">;
    static dynamicTooltipPopupWithImageAndText_imageAndTextStackPanel_tooltipTextImagePanel_tooltipImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "0">;
    static dynamicTooltipPopupWithImageAndText_imageAndTextStackPanel_tooltipTextImagePanel_tooltipImagePanel_0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicTooltipPopupWithImageAndText_imageAndTextStackPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicTooltipPopupWithImageAndText_imageAndTextStackPanel_tooltipText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicTooltipPopupWithImageAndText_tooltipChevron<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicTooltipBelow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicCustomTooltipBelow<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicTooltip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "above" | "below">;
    static dynamicTooltip_above<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static dynamicTooltip_above_content<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicTooltip_below<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static dynamicTooltip_below_content<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyPocketCloseButtonDefault<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyPocketCloseButtonPressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyPocketCloseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static legacyPocketCloseButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyPocketCloseButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static legacyPocketCloseButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static errorGlyph<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static serviceRepoImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading" | "service_repo_image">;
    static serviceRepoImagePanel_serviceRepoImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static serviceRepoImagePanel_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonCycler<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageCycler<T extends Types = Types.ImageCycler>(properties?: PropertiesType[T]): Modify<T, string>;
    static textCycler<T extends Types = Types.LabelCycler>(properties?: PropertiesType[T]): Modify<T, string>;
    static squaringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "squaring_panel">;
    static squaringPanel_squaringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "squaring_panel_content">;
    static squaringPanel_squaringPanel_squaringPanelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CommonClassic extends Class {
    static button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonStateDefault<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonStateHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonStatePressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggle<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleCheckedState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleUncheckedState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleCheckedHoveredState<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hover" | "toggle_checked_state">;
    static toggleCheckedHoveredState_toggleCheckedState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleCheckedHoveredState_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleUncheckedHoveredState<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hover" | "toggle_unchecked_state">;
    static toggleUncheckedHoveredState_toggleUncheckedState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleUncheckedHoveredState_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class EduCommon extends Class {
    static lightLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static readableLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static sliderToggle<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static trashDefault<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static trashHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static trashPressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoTrashButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static photoTrashButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoTrashButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static photoTrashButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static downloadProgressModalPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "downloading">;
    static downloadProgressModalPanel_downloading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static loadingProgressModalPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "loading">;
    static loadingProgressModalPanel_loading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalCancelButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalProgressPanelWithCancel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content" | "title" | "common_panel" | "cancel_button">;
    static modalProgressPanelWithCancel_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalProgressPanelWithCancel_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalProgressPanelWithCancel_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label" | "progress_loading_bars" | "title_panel">;
    static modalProgressPanelWithCancel_content_titlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalProgressPanelWithCancel_content_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalProgressPanelWithCancel_content_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalProgressPanelWithCancel_cancelButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalProgressPanelNoButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content" | "common_panel">;
    static modalProgressPanelNoButton_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalProgressPanelNoButton_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_bars" | "progress_title_text">;
    static modalProgressPanelNoButton_content_progressTitleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static modalProgressPanelNoButton_content_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static appleAnimation<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bookAnimation<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduLoadingAnimation<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalStackItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalStackItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backButtonPadded<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "back_button" | "back_button_padding_before">;
    static backButtonPadded_backButtonPaddingBefore<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backButtonPadded_backButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static homeButtonContent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static homeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static underlineText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label_hover">;
    static underlineText_labelHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static underlineButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static underlineButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static underlineButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static underlineButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduScreenHeader<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "title_controls">;
    static eduScreenHeader_titleControls<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "back_item" | "image_item" | "image_item_template" | "title_text_padding" | "title_item">;
    static eduScreenHeader_titleControls_backItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad" | "back_button">;
    static eduScreenHeader_titleControls_backItem_backButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduScreenHeader_titleControls_backItem_gamepad<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduScreenHeader_titleControls_imageItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image">;
    static eduScreenHeader_titleControls_imageItem_image<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduScreenHeader_titleControls_imageItemTemplate<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image">;
    static eduScreenHeader_titleControls_imageItemTemplate_image<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "image_color">;
    static eduScreenHeader_titleControls_imageItemTemplate_image_imageColor<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduScreenHeader_titleControls_titleTextPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduScreenHeader_titleControls_titleItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title">;
    static eduScreenHeader_titleControls_titleItem_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static shareDialogTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static shareHeaderPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title" | "close_button">;
    static shareHeaderPanel_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static shareHeaderPanel_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static teamsAdvancedShareHeaderPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addResourceShareHeaderPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bodyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "body_stack">;
    static bodyPanel_bodyStack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static teamsBodyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static teamsBodyResourcePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static teamsSimpleBodyResourcePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static joincodeBodyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addResourceBodyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "icon_padding" | "icon_stack_panel">;
    static iconSection_iconStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconSection_iconPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addResourcesSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider" | "add_resource_label" | "teams_padding_middle" | "resource_button">;
    static addResourcesSection_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addResourcesSection_addResourceLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addResourcesSection_teamsPaddingMiddle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addResourcesSection_resourceButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static editResourceUriGlyph<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static editResourcesSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider" | "teams_padding_middle" | "resource_label_text" | "edit_resource_body_button_stack">;
    static editResourcesSection_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static editResourcesSection_resourceLabelText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static editResourcesSection_teamsPaddingMiddle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static editResourcesSection_editResourceBodyButtonStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_middle" | "resource_button" | "edit_resource_uri_button">;
    static editResourcesSection_editResourceBodyButtonStack_resourceButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static editResourcesSection_editResourceBodyButtonStack_paddingMiddle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static editResourcesSection_editResourceBodyButtonStack_editResourceUriButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static bodyContentStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_middle" | "body_text_centering_panel" | "icons" | "copy_link_centering_panel" | "add_resources" | "edit_resources">;
    static bodyContentStack_bodyTextCenteringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "body_text">;
    static bodyContentStack_bodyTextCenteringPanel_bodyText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bodyContentStack_paddingMiddle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bodyContentStack_icons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bodyContentStack_copyLinkCenteringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "copy_link_panel">;
    static bodyContentStack_copyLinkCenteringPanel_copyLinkPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bodyContentStack_addResources<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bodyContentStack_editResources<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static teamsSimpleBodyContentStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static teamsBodyContentStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static teamsBodyResourceContentStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static joincodeBodyContentStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addResourceBodyContentStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "link1" | "button_name_label" | "label_one_centering_panel" | "label_padding_middle" | "label_two_centering_panel" | "learn_more_padding_middle" | "url_padding_middle" | "url_label" | "url_textbox" | "inline_notification" | "inline_notification_spacer" | "button_middle_spacer" | "button_name_textbox" | "button_name_textbox_next_disabled">;
    static addResourceBodyContentStack_labelOneCenteringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "teams_share_label">;
    static addResourceBodyContentStack_labelOneCenteringPanel_teamsShareLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addResourceBodyContentStack_labelPaddingMiddle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addResourceBodyContentStack_labelTwoCenteringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "teams_share_label">;
    static addResourceBodyContentStack_labelTwoCenteringPanel_teamsShareLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addResourceBodyContentStack_learnMorePaddingMiddle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addResourceBodyContentStack_link1<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static addResourceBodyContentStack_urlPaddingMiddle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addResourceBodyContentStack_urlLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addResourceBodyContentStack_urlTextbox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static addResourceBodyContentStack_inlineNotification<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static addResourceBodyContentStack_inlineNotificationSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addResourceBodyContentStack_buttonNameLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addResourceBodyContentStack_buttonMiddleSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addResourceBodyContentStack_buttonNameTextbox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static addResourceBodyContentStack_buttonNameTextboxNextDisabled<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static addEditResourceBodyContentStack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scroll_content">;
    static addEditResourceBodyContentStack_scrollContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static addEditResourceBodyContentStack_scrollContent_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourcePopupButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "button_padding" | "done_button" | "back_button_panel">;
    static resourcePopupButtons_doneButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourcePopupButtons_buttonPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourcePopupButtons_backButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "back_button_enabled" | "back_button_disabled">;
    static resourcePopupButtons_backButtonPanel_backButtonEnabled<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static resourcePopupButtons_backButtonPanel_backButtonDisabled<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static addResourcePopupLowerButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "edit_resource_popup_buttons" | "add_resource_popup_buttons">;
    static addResourcePopupLowerButtonPanel_editResourcePopupButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addResourcePopupLowerButtonPanel_addResourcePopupButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static shareDialogBodyText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text" | "tts_border">;
    static shareDialogBodyText_ttsBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static shareDialogBodyText_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static shareIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static shareLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "share_image_offset_panel">;
    static shareLabel_shareImageOffsetPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "link_share">;
    static shareLabel_shareImageOffsetPanel_linkShare<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static copyLinkStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "link_box" | "copy_button">;
    static copyLinkStackPanel_linkBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static copyLinkStackPanel_copyButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_right" | "padding_left" | "teams_button" | "teams_mail_padding" | "mail_button" | "mail_classrooms_padding" | "classrooms_button">;
    static iconStackPanel_paddingLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconStackPanel_teamsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconStackPanel_teamsMailPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconStackPanel_mailButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconStackPanel_mailClassroomsPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconStackPanel_classroomsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconStackPanel_paddingRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultShareButtonContents<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "image">;
    static defaultShareButtonContents_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultShareButtonContents_image<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultShareButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static defaultShareButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultShareButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultShareButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "divider">;
    static verticalDivider_divider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "divider">;
    static horizontalDivider_divider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static stackPanelGridSlot<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack_panel_grid_item_panel">;
    static stackPanelGridSlot_stackPanelGridItemPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "stack_panel_grid_item">;
    static stackPanelGridSlot_stackPanelGridItemPanel_stackPanelGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static stackPanelGridRow<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider" | "stack_panel_grid_row_item">;
    static stackPanelGridRow_stackPanelGridRowItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "row">;
    static stackPanelGridRow_stackPanelGridRowItem_row<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static stackPanelGridRow_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "line">;
    static stackPanelGridRow_divider_line<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static stackPanelGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static border<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "border" | "description">;
    static descriptionPanel_border<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionPanel_description<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduShareTextPopup<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static teamsEduShareTextPopup<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static teamsEduShareResourcePopup<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static teamsEduSimpleShareResourcePopup<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static joincodeEduPopup<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addResourceDialog<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sharePopupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static inlineNotification<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "stack">;
    static inlineNotification_stack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer" | "icon" | "warning_text">;
    static inlineNotification_stack_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inlineNotification_stack_spacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static inlineNotification_stack_warningText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchButtonContent<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchBarAndHomeButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "home_button" | "search_bar" | "search_button" | "search_pad" | "end_pad">;
    static searchBarAndHomeButton_searchBar<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "search_bar">;
    static searchBarAndHomeButton_searchBar_searchBar<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchBarAndHomeButton_searchButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchBarAndHomeButton_searchPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchBarAndHomeButton_homeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static searchBarAndHomeButton_endPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarHint<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inactive_slot_dimmer" | "bound_key_glyph_background">;
    static hotbarHint_inactiveSlotDimmer<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static hotbarHint_boundKeyGlyphBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "bound_key_glyph_text">;
    static hotbarHint_boundKeyGlyphBackground_boundKeyGlyphText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewToggleContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "button_image_templates" | "button_image_worlds" | "button_label_wrapper" | "left_edge_text_padding">;
    static viewToggleContent_buttonImageTemplates<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "image_color_templates">;
    static viewToggleContent_buttonImageTemplates_imageColorTemplates<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewToggleContent_buttonImageWorlds<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewToggleContent_buttonLabelWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_label">;
    static viewToggleContent_buttonLabelWrapper_buttonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewToggleContent_leftEdgeTextPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsAndTemplatesSearchBar<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "stack_panel">;
    static worldsAndTemplatesSearchBar_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "search_bar_wrapper" | "temp_padding" | "view_toggle_background">;
    static worldsAndTemplatesSearchBar_stackPanel_searchBarWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "search_bar">;
    static worldsAndTemplatesSearchBar_stackPanel_searchBarWrapper_searchBar<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsAndTemplatesSearchBar_stackPanel_tempPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsAndTemplatesSearchBar_stackPanel_viewToggleBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "stack_panel">;
    static worldsAndTemplatesSearchBar_stackPanel_viewToggleBackground_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_edge_padding" | "view_toggle_button" | "right_edge_padding">;
    static worldsAndTemplatesSearchBar_stackPanel_viewToggleBackground_stackPanel_leftEdgePadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsAndTemplatesSearchBar_stackPanel_viewToggleBackground_stackPanel_viewToggleButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsAndTemplatesSearchBar_stackPanel_viewToggleBackground_stackPanel_rightEdgePadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudConflictResolutionPopupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudConflictResolutionPopup<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudConflictResolutionContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding1" | "padding2" | "conflict_resolution_description_wrapper" | "world_info_wrapper" | "keep_local_button" | "keep_cloud_button" | "keep_both_button">;
    static eduCloudConflictResolutionContent_conflictResolutionDescriptionWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tts_border" | "conflict_resolution_description">;
    static eduCloudConflictResolutionContent_conflictResolutionDescriptionWrapper_ttsBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudConflictResolutionContent_conflictResolutionDescriptionWrapper_conflictResolutionDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudConflictResolutionContent_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudConflictResolutionContent_worldInfoWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tts_border" | "world_info_stack">;
    static eduCloudConflictResolutionContent_worldInfoWrapper_ttsBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudConflictResolutionContent_worldInfoWrapper_worldInfoStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "local_world_name_label" | "local_world_last_changed_label" | "cloud_world_name_label" | "cloud_world_last_changed_label">;
    static eduCloudConflictResolutionContent_worldInfoWrapper_worldInfoStack_localWorldNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudConflictResolutionContent_worldInfoWrapper_worldInfoStack_localWorldLastChangedLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudConflictResolutionContent_worldInfoWrapper_worldInfoStack_cloudWorldNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudConflictResolutionContent_worldInfoWrapper_worldInfoStack_cloudWorldLastChangedLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudConflictResolutionContent_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudConflictResolutionContent_keepLocalButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudConflictResolutionContent_keepCloudButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudConflictResolutionContent_keepBothButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedButtonsBaseDefinition<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Friendsbutton extends Class {
    static friendsdrawerAnimatedIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsdrawerButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_middle" | "padding_right" | "icon_wrapper" | "vertically_centered_text">;
    static friendsdrawerButtonContent_iconWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon_with_border">;
    static friendsdrawerButtonContent_iconWrapper_iconWithBorder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "border_black" | "friendsdrawer_animated_icon">;
    static friendsdrawerButtonContent_iconWrapper_iconWithBorder_friendsdrawerAnimatedIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsdrawerButtonContent_iconWrapper_iconWithBorder_borderBlack<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsdrawerButtonContent_paddingMiddle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsdrawerButtonContent_verticallyCenteredText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_padding" | "profile_button_label">;
    static friendsdrawerButtonContent_verticallyCenteredText_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsdrawerButtonContent_verticallyCenteredText_profileButtonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsdrawerButtonContent_paddingRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class UiHoloCursor extends Class {
    static specialRender<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiHoloCursor<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiHoloCursorContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "special_render">;
    static uiHoloCursorContent_specialRender<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Iconbutton extends Class {
    static iconbuttonAnimatedIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconbuttonButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_middle" | "icon_wrapper" | "vertically_centered_text">;
    static iconbuttonButtonContent_iconWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon_with_border">;
    static iconbuttonButtonContent_iconWrapper_iconWithBorder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "border_black" | "iconbutton_animated_icon">;
    static iconbuttonButtonContent_iconWrapper_iconWithBorder_iconbuttonAnimatedIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconbuttonButtonContent_iconWrapper_iconWithBorder_borderBlack<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconbuttonButtonContent_paddingMiddle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconbuttonButtonContent_verticallyCenteredText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_padding" | "profile_button_label">;
    static iconbuttonButtonContent_verticallyCenteredText_topPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static iconbuttonButtonContent_verticallyCenteredText_profileButtonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class PurchaseCommon extends Class {
    static bannerFill<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static bannerEmpty<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "frame">;
    static screenshotsGridItem_frame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "progress_loading" | "screenshot_image" | "screenshot_button">;
    static screenshotsGridItem_frame_screenshotImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsGridItem_frame_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsGridItem_frame_screenshotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "pressed" | "hover">;
    static screenshotsGridItem_frame_screenshotButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsGridItem_frame_screenshotButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenshotsGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyImageFrame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "zoomed">;
    static keyImageFrame_zoomed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static offerGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "frame">;
    static offerGridItem_frame<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "offer_button" | "offer_key_art">;
    static offerGridItem_frame_offerKeyArt<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static offerGridItem_frame_offerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "pressed" | "hover">;
    static offerGridItem_frame_offerButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static offerGridItem_frame_offerButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static offerGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyArtAndText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "key_image_panel" | "description_scroll">;
    static keyArtAndText_keyImagePanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "key_image">;
    static keyArtAndText_keyImagePanel_keyImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyArtAndText_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyArtAndText_descriptionScroll<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CommonButtons extends Class {
    static buttonImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static backgroundButtonImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static lockedButtonImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightButtonAssets<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkButtonAssets<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static focusBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static newUiButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "border" | "button_content" | "$button_image">;
    static newUiButtonPanel_$buttonImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newUiButtonPanel_buttonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$button_type_panel">;
    static newUiButtonPanel_buttonContent_$buttonTypePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newUiButtonPanel_border<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static newUiFormFittingButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "border">;
    static newUiFormFittingButtonPanel_border<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "$button_image">;
    static newUiFormFittingButtonPanel_border_$buttonImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_content">;
    static newUiFormFittingButtonPanel_border_$buttonImage_buttonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$button_type_panel">;
    static newUiFormFittingButtonPanel_border_$buttonImage_buttonContent_$buttonTypePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newUiWidthFittingButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "border">;
    static newUiWidthFittingButtonPanel_border<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "$button_image">;
    static newUiWidthFittingButtonPanel_border_$buttonImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_content">;
    static newUiWidthFittingButtonPanel_border_$buttonImage_buttonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$button_type_panel">;
    static newUiWidthFittingButtonPanel_border_$buttonImage_buttonContent_$buttonTypePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newUiHeightFittingButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "border">;
    static newUiHeightFittingButtonPanel_border<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "$button_image">;
    static newUiHeightFittingButtonPanel_border_$buttonImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_content">;
    static newUiHeightFittingButtonPanel_border_$buttonImage_buttonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$button_type_panel">;
    static newUiHeightFittingButtonPanel_border_$buttonImage_buttonContent_$buttonTypePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static borderlessFormFittingButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$button_image">;
    static borderlessFormFittingButtonPanel_$buttonImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_content">;
    static borderlessFormFittingButtonPanel_$buttonImage_buttonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$button_type_panel">;
    static borderlessFormFittingButtonPanel_$buttonImage_buttonContent_$buttonTypePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightTextButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "locked" | "pressed" | "hover">;
    static lightTextButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightTextButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightTextButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightTextButton_locked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkTextButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "locked" | "pressed" | "hover">;
    static darkTextButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkTextButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkTextButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkTextButton_locked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newUiBindingButtonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static underlineButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static underlineButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label_default">;
    static underlineButton_default_labelDefault<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static underlineButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label_hover">;
    static underlineButton_hover_labelHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static underlineButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label_hover">;
    static underlineButton_pressed_labelHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static readButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "read_button_inner">;
    static readButton_readButtonInner<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightContentFormFittingButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkContentFormFittingButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightTextFormFittingButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkTextFormFittingButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static transparentContentButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static singleImageWithBorderButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightContentButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "locked" | "pressed" | "hover">;
    static lightContentButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightContentButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightContentButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightContentButton_locked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightContentButtonControlContent<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "locked" | "pressed" | "hover">;
    static lightContentButtonControlContent_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightContentButtonControlContent_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightContentButtonControlContent_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightContentButtonControlContent_locked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static deactivatedLightContentButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkContentButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "locked" | "pressed" | "hover">;
    static darkContentButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkContentButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkContentButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkContentButton_locked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noBackgroundContentButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "locked" | "pressed" | "hover">;
    static noBackgroundContentButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noBackgroundContentButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noBackgroundContentButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static noBackgroundContentButton_locked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static buttonContentPanel_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static formFittingButtonContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static formFittingButtonContentPanel_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalFormFitting<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static horizontalFormFitting_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static widthFittingButtonContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static widthFittingButtonContentPanel_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static heightFittingButtonContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static heightFittingButtonContentPanel_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightGlyphButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "locked" | "pressed" | "hover">;
    static lightGlyphButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightGlyphButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightGlyphButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightGlyphButton_locked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkGlyphButtonDefault<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkGlyphButtonHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkGlyphButtonPressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkGlyphButtonLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkGlyphButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "locked" | "pressed" | "hover">;
    static darkGlyphButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkGlyphButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkGlyphButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkGlyphButton_locked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkGlyphButtonWithCustomControl<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "locked" | "pressed" | "hover" | "custom_control">;
    static darkGlyphButtonWithCustomControl_customControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkGlyphButtonWithCustomControl_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkGlyphButtonWithCustomControl_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkGlyphButtonWithCustomControl_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkGlyphButtonWithCustomControl_locked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static glyphContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "glyph_button_content">;
    static glyphContentPanel_glyphButtonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static hyperlinkButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static hyperlinkContentButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedButtonAssets<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedOverlayAssets<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedLabelContentBackgroundAssets<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedLabelBackgroundAssets<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedTransparentLabelContentBackgroundAssets<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "assets">;
    static nestedTransparentLabelContentBackgroundAssets_assets<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedBaseLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedCenteredLabelControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static nestedCenteredLabelControl_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedLabelWithImageControl<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "image" | "label_panel" | "image_to_label_padding">;
    static nestedLabelWithImageControl_image<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedLabelWithImageControl_imageToLabelPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedLabelWithImageControl_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static nestedLabelWithImageControl_labelPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedSixPartEmptyDefinition<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedSixPartLabelControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left_top_label" | "left_middle_label" | "left_bottom_label" | "right_top_label" | "right_middle_label" | "right_bottom_label">;
    static nestedSixPartLabelControl_leftTopLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedSixPartLabelControl_leftMiddleLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedSixPartLabelControl_leftBottomLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedSixPartLabelControl_rightTopLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedSixPartLabelControl_rightMiddleLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedSixPartLabelControl_rightBottomLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedDarkButtonAssets<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedContentBackgroundAssets<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedContentOverlayAssets<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedDarkControlWithImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "image_panel">;
    static nestedDarkControlWithImage_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedDarkControlWithImage_imagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image">;
    static nestedDarkControlWithImage_imagePanel_image<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestableButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "base_button" | "nested_controls_panel">;
    static nestableButton_nestedControlsPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "locked_overlay" | "nested_controls">;
    static nestableButton_nestedControlsPanel_lockedOverlay<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestableButton_nestedControlsPanel_nestedControls<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestableButton_baseButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "locked" | "pressed" | "hover">;
    static nestableButton_baseButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestableButton_baseButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestableButton_baseButton_pressed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestableButton_baseButton_locked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedButtonBase<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_overlay" | "button_control">;
    static nestedButtonBase_buttonOverlay<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedButtonBase_buttonControl<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "control_area" | "button_stack_padding" | "label_area">;
    static nestedButtonBase_buttonControl_controlArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "overlay" | "control">;
    static nestedButtonBase_buttonControl_controlArea_background<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedButtonBase_buttonControl_controlArea_control<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedButtonBase_buttonControl_controlArea_overlay<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedButtonBase_buttonControl_buttonStackPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedButtonBase_buttonControl_labelArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "control" | "control_background">;
    static nestedButtonBase_buttonControl_labelArea_background<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedButtonBase_buttonControl_labelArea_controlBackground<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static nestedButtonBase_buttonControl_labelArea_control<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkNestableButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static transparentLabelNestableButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static staticTooltipNotificationPanel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "locked" | "pressed" | "hover" | "static_tooltip_popup_panel">;
    static staticTooltipNotificationPanel_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static staticTooltipNotificationPanel_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static staticTooltipNotificationPanel_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static staticTooltipNotificationPanel_locked<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static staticTooltipNotificationPanel_staticTooltipPopupPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicTooltipNotificationPanel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "locked" | "pressed" | "hover" | "dyanmic_tooltip_popup_panel">;
    static dynamicTooltipNotificationPanel_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicTooltipNotificationPanel_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicTooltipNotificationPanel_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicTooltipNotificationPanel_locked<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicTooltipNotificationPanel_dyanmicTooltipPopupPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static textBodyFocusBorderForControllerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "text_control" | "hover">;
    static textBodyFocusBorderForControllerButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static textBodyFocusBorderForControllerButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "focus_border">;
    static textBodyFocusBorderForControllerButton_hover_focusBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static textBodyFocusBorderForControllerButton_textControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CommonDialogs extends Class {
    static standardTitleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "common_dialogs_0" | "common_dialogs_1">;
    static titleLabel_commonDialogs0<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleLabel_commonDialogs1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelThreeButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label" | "common_panel" | "panel_indent" | "bottom_button_panel" | "top_button_panel" | "middle_button_panel">;
    static mainPanelThreeButtons_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelThreeButtons_titleLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelThreeButtons_panelIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inside_header_panel">;
    static mainPanelThreeButtons_panelIndent_insideHeaderPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelThreeButtons_topButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelThreeButtons_middleButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelThreeButtons_bottomButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelTwoButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label" | "common_panel" | "panel_indent" | "bottom_button_panel" | "top_button_panel">;
    static mainPanelTwoButtons_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelTwoButtons_titleLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelTwoButtons_panelIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inside_header_panel">;
    static mainPanelTwoButtons_panelIndent_insideHeaderPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelTwoButtons_topButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelTwoButtons_bottomButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelOneButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label" | "common_panel" | "panel_indent" | "bottom_button_panel">;
    static mainPanelOneButton_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelOneButton_titleLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelOneButton_panelIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inside_header_panel">;
    static mainPanelOneButton_panelIndent_insideHeaderPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelOneButton_bottomButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelNoButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label" | "common_panel" | "panel_indent">;
    static mainPanelNoButtons_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelNoButtons_titleLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelNoButtons_panelIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inside_header_panel">;
    static mainPanelNoButtons_panelIndent_insideHeaderPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelNoTitleNoButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "common_panel" | "panel_indent">;
    static mainPanelNoTitleNoButtons_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelNoTitleNoButtons_panelIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inside_header_panel">;
    static mainPanelNoTitleNoButtons_panelIndent_insideHeaderPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelSmallTitleOneButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label" | "common_panel" | "panel_indent" | "bottom_button_panel">;
    static mainPanelSmallTitleOneButton_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelSmallTitleOneButton_titleLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelSmallTitleOneButton_panelIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inside_header_panel">;
    static mainPanelSmallTitleOneButton_panelIndent_insideHeaderPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelSmallTitleOneButton_bottomButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "panel_indent" | "modal_background_image">;
    static mainPanel_modalBackgroundImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_panelIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inside_header_panel">;
    static mainPanel_panelIndent_insideHeaderPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static formFittingMainPanelNoButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "common_panel">;
    static formFittingMainPanelNoButtons_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bg_image">;
    static commonPanel_bgImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundCommon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundThin<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static flatSolidBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundHollowCommon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "control">;
    static dialogBackgroundHollowCommon_control<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "title_label" | "close_button_holder" | "inside_header_panel">;
    static dialogBackgroundHollowCommon_control_insideHeaderPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundHollowCommon_control_closeButtonHolder<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundHollowCommon_control_titleLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonCloseButtonHolder<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "close" | "compact_close">;
    static commonCloseButtonHolder_close<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonCloseButtonHolder_compactClose<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundOpaque<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundOpaqueWithChild<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundHollow1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundHollow2<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundHollow3<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundHollow4<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogBackgroundHollow6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fullScreenBackground<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background">;
    static fullScreenBackground_background<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CommonTabs extends Class {
    static emptyTabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tab_image" | "tab_content_sizer">;
    static tabPanel_tabImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabPanel_tabContentSizer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tab_content">;
    static tabPanel_tabContentSizer_tabContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseTab<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$tab_view_binding_name">;
    static baseTab_$tabViewBindingName<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, "unchecked" | "unchecked_locked" | "checked" | "checked_hover" | "unchecked_hover" | "checked_locked" | "checked_locked_hover" | "unchecked_locked_hover">;
    static baseTab_$tabViewBindingName_unchecked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseTab_$tabViewBindingName_uncheckedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseTab_$tabViewBindingName_uncheckedLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseTab_$tabViewBindingName_uncheckedLockedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseTab_$tabViewBindingName_checked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseTab_$tabViewBindingName_checkedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseTab_$tabViewBindingName_checkedLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static baseTab_$tabViewBindingName_checkedLockedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabTop<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketTabLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketTabRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketTabCloseButton<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "close_button">;
    static pocketTabCloseButton_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketTabHelpButton<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "help_button">;
    static pocketTabHelpButton_helpButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketTabCloseAndHelpButton<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "close_button" | "help_button">;
    static pocketTabCloseAndHelpButton_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static pocketTabCloseAndHelpButton_helpButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabCloseAndHelpButton<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "close_button" | "help_button">;
    static tabCloseAndHelpButton_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static tabCloseAndHelpButton_helpButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CommonToggles extends Class {
    static contentToggleImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static contentToggleImagePanel_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentToggleLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toggle_label">;
    static contentToggleLabelPanel_toggleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentToggleIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content_toggle_image">;
    static contentToggleIconPanel_contentToggleImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "toggle_image_panel" | "toggle_image_padding_label" | "toggle_label_panel" | "toggle_label_padding_toggle_icon" | "toggle_icon">;
    static toggleContentPanel_toggleImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContentPanel_toggleImagePaddingLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContentPanel_toggleLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContentPanel_toggleLabelPaddingToggleIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleContentPanel_toggleIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalFormFittingToggleContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "toggle_image_panel" | "toggle_image_padding_label" | "toggle_label_panel" | "toggle_label_padding_toggle_icon" | "toggle_icon">;
    static verticalFormFittingToggleContent_toggleImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalFormFittingToggleContent_toggleImagePaddingLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalFormFittingToggleContent_toggleLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalFormFittingToggleContent_toggleLabelPaddingToggleIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalFormFittingToggleContent_toggleIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightTextToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightImageToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightContentToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkUiToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkTextToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkImageToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkContentToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkVerticalTemplateToggle<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkVerticalFormFittingContentToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dark_content_toggle">;
    static darkVerticalFormFittingContentToggle_darkContentToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkTemplateToggle<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightTemplateToggle<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightUiToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$toggle_view_binding_name">;
    static lightUiToggle_$toggleViewBindingName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static switchToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightTextToggleCollection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightImageToggleCollection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkTextToggleCollection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkImageToggleCollection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static darkUiToggleCollection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static lightUiToggleCollection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$toggle_view_binding_name">;
    static lightUiToggleCollection_$toggleViewBindingName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static switchToggleCollection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleStatePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_panel">;
    static toggleStatePanel_buttonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleUnchecked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleChecked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleUncheckedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleCheckedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleUncheckedLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleCheckedLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleUncheckedHoverWithChevron<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleCheckedHoverWithChevron<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image">;
    static toggleImage_image<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioOffIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioOffHoverIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioOnIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioOnHoverIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkBoxButtonToggleImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxButtonCheckedState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxButtonUncheckedState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxButtonCheckedHoverState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxButtonUncheckedHoverState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxButtonCheckedLockedState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxButtonUncheckedLockedState<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleCheckboxUnchecked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleCheckboxChecked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleCheckboxUncheckedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleCheckboxCheckedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleCheckboxUncheckedLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleCheckboxCheckedLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkBoxButtonUiPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "toggle_image">;
    static checkBoxButtonUiPanel_toggleImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "border" | "button_content" | "checkbox_image" | "$button_image">;
    static checkBoxButtonUiPanel_toggleImage_$buttonImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkBoxButtonUiPanel_toggleImage_buttonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$button_type_panel">;
    static checkBoxButtonUiPanel_toggleImage_buttonContent_$buttonTypePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkBoxButtonUiPanel_toggleImage_border<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkBoxButtonUiPanel_toggleImage_checkboxImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image">;
    static checkBoxButtonUiPanel_toggleImage_checkboxImage_image<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonAndCheckboxTemplate<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonWithCheckboxToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class UpdateDimensions extends Class {
    static updateDimensionsUpdateAndPlayButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateDimensionsDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateDimensionsLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static makeBackupCheckbox<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, "header_description_stack_panel">;
    static makeBackupCheckbox_headerDescriptionStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "checkbox_visuals" | "buffer_panel" | "another_panel">;
    static makeBackupCheckbox_headerDescriptionStackPanel_checkboxVisuals<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static makeBackupCheckbox_headerDescriptionStackPanel_bufferPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static makeBackupCheckbox_headerDescriptionStackPanel_bufferPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static makeBackupCheckbox_headerDescriptionStackPanel_anotherPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldUpgrade<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateDimensionsDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_label" | "common_panel" | "panel_indent" | "bottom_button_panel" | "top_button_panel" | "world_upgrade_image">;
    static updateDimensionsDialog_commonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateDimensionsDialog_titleLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateDimensionsDialog_panelIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "inside_header_panel">;
    static updateDimensionsDialog_panelIndent_insideHeaderPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateDimensionsDialog_topButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateDimensionsDialog_bottomButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateDimensionsDialog_worldUpgradeImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_a">;
    static gamepadHelpers_gamepadHelperA<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateDimensionsScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateDimensionsScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helpers" | "update_dimensions_dialog">;
    static updateDimensionsScreenContent_updateDimensionsDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateDimensionsScreenContent_gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class UpdateVersion extends Class {
    static updateVersionScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateVersionPopup<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateVersionContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_of_version_panel" | "spacer_1px" | "update_body_text" | "spacer_1px_2">;
    static updateVersionContent_topOfVersionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateVersionContent_spacer1px<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateVersionContent_updateBodyText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateVersionContent_spacer1px2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static patchNotesPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "patch_notes_text">;
    static patchNotesPanel_patchNotesText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static pictureAndPatchNotes<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "patch_notes_panel" | "patch_notes_image_outline">;
    static pictureAndPatchNotes_patchNotesImageOutline<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "patch_notes_image">;
    static pictureAndPatchNotes_patchNotesImageOutline_patchNotesImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static pictureAndPatchNotes_patchNotesPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static patchNotes<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "patch_notes_text">;
    static patchNotes_patchNotesText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateBodyText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static updateButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class Win10TrialConversion extends Class {
    static paddingHorizontal<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paddingVertical<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static paddingVertical3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static backgroundImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static focusBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static packImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static packImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "pack_image">;
    static packImagePanel_packImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleImageBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "image">;
    static titleImageBorder_image<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static packImageWithBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "image">;
    static packImageWithBorder_image<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static labelPanel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_5" | "padding_6" | "buy_now_button">;
    static buttonPanel_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel_buyNowButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyNowButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyNowLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_label">;
    static buyNowLabel_buttonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static isFocused<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static fillerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static focusBorderButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static focusBorderButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static focusBorderButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static focusBorderButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridItem<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "pack_image_pane" | "pack_panel">;
    static gridItem_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridItem_packImagePane<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridItem_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridItem_packPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridItem_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridItemVertical<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "grid_item_horizontal" | "pack_grid">;
    static gridItemVertical_gridItemHorizontal<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridItemVertical_packGrid<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static packPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_2" | "packtitle" | "packdesc">;
    static packPanel_packtitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static packPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packPanel_packdesc<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static collectionMainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title_panel" | "button_panel" | "padding_1" | "padding_2" | "padding_3" | "padding_4" | "offer_panel" | "padding_5" | "padding_6" | "title_image_panel" | "include_panel" | "pack_list_grid">;
    static collectionMainPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static collectionMainPanel_titlePanel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static collectionMainPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static collectionMainPanel_titleImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "border_image">;
    static collectionMainPanel_titleImagePanel_borderImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static collectionMainPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static collectionMainPanel_offerPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "label_panel">;
    static collectionMainPanel_offerPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static collectionMainPanel_offerPanel_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer_label">;
    static collectionMainPanel_offerPanel_labelPanel_offerLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static collectionMainPanel_offerPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static collectionMainPanel_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static collectionMainPanel_buttonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static collectionMainPanel_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static collectionMainPanel_includePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "include_label">;
    static collectionMainPanel_includePanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static collectionMainPanel_includePanel_includeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static collectionMainPanel_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static collectionMainPanel_packListGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static backgroundImageWithBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "main_panel_no_buttons">;
    static backgroundImageWithBorder_mainPanelNoButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static win10TrialConversionMainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static win10TrialConversionMainPanel_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalMainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "panel" | "padding_1" | "padding_2">;
    static verticalMainPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalMainPanel_panel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalMainPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalMainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "starter_collection" | "master_collection">;
    static horizontalMainPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalMainPanel_starterCollection<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalMainPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalMainPanel_masterCollection<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static win10TrialConversionScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static win10TrialConversionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class WorldConversionComplete extends Class {
    static background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static promptText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "message">;
    static promptText_message<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static convertedWorldPreviewName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static convertedWorldPreviewDate<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static convertedWorldPreviewGameMode<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static convertedWorldPreviewFilesize<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static convertedWorldPreviewTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text_indent">;
    static convertedWorldPreviewTextPanel_textIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top_side" | "bottom_side">;
    static convertedWorldPreviewTextPanel_textIndent_topSide<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "converted_world_name" | "converted_world_date">;
    static convertedWorldPreviewTextPanel_textIndent_topSide_convertedWorldName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static convertedWorldPreviewTextPanel_textIndent_topSide_convertedWorldDate<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static convertedWorldPreviewTextPanel_textIndent_bottomSide<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "converted_world_game_mode" | "converted_world_filesize">;
    static convertedWorldPreviewTextPanel_textIndent_bottomSide_convertedWorldGameMode<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static convertedWorldPreviewTextPanel_textIndent_bottomSide_convertedWorldFilesize<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static convertedWorldPreviewPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "world_preview_content">;
    static convertedWorldPreviewPanel_worldPreviewContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "converted_world_screenshot" | "converted_world_text_panel">;
    static convertedWorldPreviewPanel_worldPreviewContent_convertedWorldScreenshot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "image_content">;
    static convertedWorldPreviewPanel_worldPreviewContent_convertedWorldScreenshot_imageContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "picture">;
    static convertedWorldPreviewPanel_worldPreviewContent_convertedWorldScreenshot_imageContent_picture<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static convertedWorldPreviewPanel_worldPreviewContent_convertedWorldTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_0" | "prompt_1" | "world_entry_container" | "buttons_panel_sizer">;
    static mainPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_prompt1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_worldEntryContainer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "world_entry_sizer">;
    static mainPanel_worldEntryContainer_worldEntrySizer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "world_entry">;
    static mainPanel_worldEntryContainer_worldEntrySizer_worldEntry<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_buttonsPanelSizer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "buttons_panel">;
    static mainPanel_buttonsPanelSizer_buttonsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "return_button" | "load_game_button">;
    static mainPanel_buttonsPanelSizer_buttonsPanel_loadGameButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_buttonsPanelSizer_buttonsPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_buttonsPanelSizer_buttonsPanel_returnButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldConversionCompleteScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dialog">;
    static worldConversionCompleteScreenContent_dialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldConversionCompleteScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class WorldRecovery extends Class {
    static worldRecoveryScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldRecoveryScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dialog">;
    static worldRecoveryScreenContent_dialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class WorldTemplates extends Class {
    static horizontalPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static labelBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static lockIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static newWorldToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newRealmToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "icon_panel" | "horizontal_padding_1" | "horizontal_padding_2" | "horizontal_padding_0" | "world_button_label_panel">;
    static worldButtonContent_horizontalPadding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldButtonContent_iconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$world_icon">;
    static worldButtonContent_iconPanel_$worldIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldButtonContent_horizontalPadding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldButtonContent_worldButtonLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "world_button_label">;
    static worldButtonContent_worldButtonLabelPanel_worldButtonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldButtonContent_horizontalPadding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldButtonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonButtonTemplate<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static generateRandom<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static helpButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gridButtonContentTemplate<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static gridButtonContentTemplate_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static labelContentTemplate<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label_panel">;
    static labelContentTemplate_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label_panel_layout">;
    static labelContentTemplate_labelPanel_labelPanelLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static labelContentTemplate_labelPanel_labelPanelLayout_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static myTemplatesLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusTemplatesLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static customTemplatesLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generateRandomButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsTemplatesInfo<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "info_label">;
    static realmsTemplatesInfo_infoLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldListText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateScreenshot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "picture">;
    static worldTemplateScreenshot_picture<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateVersion<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateDownloadText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text_indent">;
    static worldTemplateTextPanel_textIndent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "top_side" | "bottom_side">;
    static worldTemplateTextPanel_textIndent_topSide<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "world_template_name" | "download_text_label">;
    static worldTemplateTextPanel_textIndent_topSide_worldTemplateName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateTextPanel_textIndent_topSide_downloadTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateTextPanel_textIndent_bottomSide<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "world_template_version" | "world_template_description" | "pad" | "csb_icon">;
    static worldTemplateTextPanel_textIndent_bottomSide_csbIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateTextPanel_textIndent_bottomSide_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateTextPanel_textIndent_bottomSide_worldTemplateDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateTextPanel_textIndent_bottomSide_worldTemplateVersion<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBanner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "banner">;
    static csbBanner_banner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "lock_panel" | "world_template_screenshot" | "world_template_text_panel">;
    static worldTemplateContentPanel_worldTemplateScreenshot<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateContentPanel_worldTemplateTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateContentPanel_lockPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "lock_icon">;
    static worldTemplateContentPanel_lockPanel_lockIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusTemplateItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateItem<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "world_template_item_button">;
    static worldTemplateItem_worldTemplateItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusTemplateItem<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "realms_plus_template_item_button">;
    static realmsPlusTemplateItem_realmsPlusTemplateItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateItemGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static seeMoreTemplatesButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static suggestedSeeMoreButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusSeeMoreButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateInventorySeeMoreButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static customWorldTemplateSeeMoreButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateSectionFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static suggestedTemplateSectionFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusTemplateSectionFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateInventorySectionFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static customWorldTemplateSectionFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static customWorldTemplateItemGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static noOwnedTemplatesTextLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static noOwnedTemplatesText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static noTemplateContentOwned<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "no_template_content_owned_text_panel">;
    static noTemplateContentOwned_noTemplateContentOwnedTextPanel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingOffsets<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateScrollContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static templateScrollContent_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonScrollPane<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static templateScrollPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "world_template_screen_content_stack_panel">;
    static templateScrollPanel_worldTemplateScreenContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldListGridsStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "template_list_panel" | "store_panel" | "custom_template_panel" | "realms_info_panel">;
    static worldListGridsStack_templateListPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "world_template_inventory_section_factory" | "my_templates_label_panel" | "template_bottom_padding">;
    static worldListGridsStack_templateListPanel_myTemplatesLabelPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldListGridsStack_templateListPanel_worldTemplateInventorySectionFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldListGridsStack_templateListPanel_templateBottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldListGridsStack_storePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "loading_panel" | "store_grids">;
    static worldListGridsStack_storePanel_loadingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldListGridsStack_storePanel_storeGrids<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "realms_plus_list_panel" | "suggested_content_panel">;
    static worldListGridsStack_storePanel_storeGrids_realmsPlusListPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "realms_plus_template_section_factory" | "realms_plus_label_panel" | "realms_plus_template_bottom_padding">;
    static worldListGridsStack_storePanel_storeGrids_realmsPlusListPanel_realmsPlusLabelPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldListGridsStack_storePanel_storeGrids_realmsPlusListPanel_realmsPlusTemplateSectionFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldListGridsStack_storePanel_storeGrids_realmsPlusListPanel_realmsPlusTemplateBottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldListGridsStack_storePanel_storeGrids_suggestedContentPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "suggested_content_offers_title_label" | "suggested_template_section_factory" | "suggested_template_bottom_padding">;
    static worldListGridsStack_storePanel_storeGrids_suggestedContentPanel_suggestedContentOffersTitleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldListGridsStack_storePanel_storeGrids_suggestedContentPanel_suggestedTemplateSectionFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldListGridsStack_storePanel_storeGrids_suggestedContentPanel_suggestedTemplateBottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldListGridsStack_customTemplatePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "custom_world_template_section_factory" | "custom_templates_label_panel" | "custom_template_list_bottom_padding">;
    static worldListGridsStack_customTemplatePanel_customTemplatesLabelPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldListGridsStack_customTemplatePanel_customWorldTemplateSectionFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldListGridsStack_customTemplatePanel_customTemplateListBottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldListGridsStack_realmsInfoPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "open_uri_button" | "realms_templates_info">;
    static worldListGridsStack_realmsInfoPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldListGridsStack_realmsInfoPanel_realmsTemplatesInfo<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldListGridsStack_realmsInfoPanel_openUriButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldListGridContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "world_list_grids_stack">;
    static worldListGridContent_worldListGridsStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateScreenContentStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_0" | "crossplatform_disabled_panel" | "crossplatform_disable_spacer" | "world_list_grid_content" | "generate_random_panel" | "generate_random_button_bottom_padding">;
    static worldTemplateScreenContentStackPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateScreenContentStackPanel_crossplatformDisabledPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "disable_text">;
    static worldTemplateScreenContentStackPanel_crossplatformDisabledPanel_disableText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateScreenContentStackPanel_crossplatformDisableSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateScreenContentStackPanel_generateRandomPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateScreenContentStackPanel_generateRandomButtonBottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplateScreenContentStackPanel_worldListGridContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static openAccountSettingButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplatesScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTemplatesPickerContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background">;
    static worldTemplatesPickerContent_background<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class XblConsoleQrSignin extends Class {
    static bannerFill<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelQr<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_panel" | "right_panel" | "divider">;
    static mainPanelQr_leftPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelQr_divider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanelQr_rightPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel_sizer">;
    static mainPanelQr_rightPanel_scrollingPanelSizer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "right_scroll_panel">;
    static mainPanelQr_rightPanel_scrollingPanelSizer_rightScrollPanel<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static commonScrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_b">;
    static gamepadHelpers_gamepadHelperB<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblConsoleQrSignin<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblConsoleQrSigninScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dialog" | "gamepad_helpers">;
    static xblConsoleQrSigninScreenContent_gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblConsoleQrSigninScreenContent_dialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollContentFocusBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "qr_panel" | "left_header" | "left_body">;
    static leftPanel_leftHeader<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_leftBody<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_qrPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "qr_border" | "qr_code" | "bee_overlay">;
    static leftPanel_qrPanel_qrBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_qrPanel_qrCode<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftPanel_qrPanel_beeOverlay<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static inputPanelWrapper<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "r_scroll_panel">;
    static inputPanelWrapper_rScrollPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "padding_4" | "padding_5" | "padding_6" | "padding_7" | "right_header" | "website_message_label" | "wrapper_panel_1" | "code_message_label" | "wrapper_panel_2" | "code_message_body1" | "code_message_body2" | "warning_messages">;
    static rightScrollPanel_rightHeader<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanel_websiteMessageLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanel_wrapperPanel1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "banner_1">;
    static rightScrollPanel_wrapperPanel1_banner1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "url_label">;
    static rightScrollPanel_wrapperPanel1_banner1_urlLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanel_codeMessageLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanel_padding4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanel_wrapperPanel2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "banner_2">;
    static rightScrollPanel_wrapperPanel2_banner2<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "code_label">;
    static rightScrollPanel_wrapperPanel2_banner2_codeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanel_padding5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanel_codeMessageBody1<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanel_padding6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanel_codeMessageBody2<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanel_padding7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightScrollPanel_warningMessages<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ps4WarningMessagePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "sign_in_account_message" | "permanent_linking_message">;
    static ps4WarningMessagePanel_signInAccountMessage<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static ps4WarningMessagePanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static ps4WarningMessagePanel_permanentLinkingMessage<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class XblConsoleSignin extends Class {
    static bannerFill<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "padding_2" | "website_message_label" | "code_message_label" | "banner_1" | "banner_2" | "message_label_panel">;
    static mainPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_messageLabelPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "message_label">;
    static mainPanel_messageLabelPanel_messageLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_websiteMessageLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_banner1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "url_label">;
    static mainPanel_banner1_urlLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_codeMessageLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_banner2<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "code_label">;
    static mainPanel_banner2_codeLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamepad_helper_b">;
    static gamepadHelpers_gamepadHelperB<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblConsoleSignin<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblConsoleSigninScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dialog" | "gamepad_helpers">;
    static xblConsoleSigninScreenContent_gamepadHelpers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblConsoleSigninScreenContent_dialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class XblConsoleSigninSucceeded extends Class {
    static bannerFill<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamerScoreIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static profilePic<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamerScoreLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamerScorePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_0" | "gamer_score_icon" | "gamer_score_panel">;
    static gamerScorePanel_gamerScoreIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamerScorePanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamerScorePanel_gamerScorePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamer_score">;
    static gamerScorePanel_gamerScorePanel_gamerScore<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "play">;
    static buttonPanel_play<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static textPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "new_account_text">;
    static textPanel_newAccountText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPartyPlatformLegalText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newAccountTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamerProfilePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "info_panel" | "picture_panel">;
    static gamerProfilePanel_picturePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "banner">;
    static gamerProfilePanel_picturePanel_banner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "profile_pic">;
    static gamerProfilePanel_picturePanel_banner_profilePic<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamerProfilePanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamerProfilePanel_infoPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "profile_info_panel">;
    static gamerProfilePanel_infoPanel_profileInfoPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "gamertag_label" | "padding_0" | "gamer_score_panel">;
    static gamerProfilePanel_infoPanel_profileInfoPanel_gamertagLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamerProfilePanel_infoPanel_profileInfoPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamerProfilePanel_infoPanel_profileInfoPanel_gamerScorePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "button_panel" | "padding_1" | "padding_0" | "padding_2" | "new_account_text_panel" | "profile" | "third_party_legal_text_panel">;
    static mainPanel_profile<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_thirdPartyLegalTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_newAccountTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_buttonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblConsoleSigninSucceeded<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblConsoleSigninSucceededScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dialog">;
    static xblConsoleSigninSucceededScreenContent_dialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class XblImmediateSignin extends Class {
    static xblImmediateSigninScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblImmediateSigninScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "root_panel">;
    static xblImmediateSigninScreenContent_rootPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CsbContent extends Class {
    static csbContentSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content_section_vertical_padding_1" | "popular_packs_label_panel" | "content_section_vertical_padding_2" | "content_pack_types" | "content_packs_included" | "content_section_vertical_padding_3">;
    static csbContentSection_contentSectionVerticalPadding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbContentSection_popularPacksLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tts_border" | "label_with_gradient">;
    static csbContentSection_popularPacksLabelPanel_labelWithGradient<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbContentSection_popularPacksLabelPanel_ttsBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbContentSection_contentSectionVerticalPadding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbContentSection_contentPackTypes<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbContentSection_contentPacksIncluded<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbContentSection_contentSectionVerticalPadding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPackTypesSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "pack_types">;
    static contentPackTypesSection_packTypes<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPackTypesSection_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPacksIncludedSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "section_divider" | "popular_packs">;
    static contentPacksIncludedSection_popularPacks<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPacksIncludedSection_sectionDivider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypes<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_01" | "pack_types_1" | "padding_02" | "pack_types_2" | "padding_03">;
    static packTypes_padding01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypes_packTypes1<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypes_padding02<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypes_packTypes2<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypes_padding03<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypes1<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_01" | "textures" | "worlds" | "padding_02" | "persona">;
    static packTypes1_worlds<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypes1_padding01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypes1_textures<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypes1_padding02<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypes1_persona<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypes2<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "padding_3" | "skins" | "mashups">;
    static packTypes2_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypes2_skins<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypes2_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypes2_mashups<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypes2_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypeDescription<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "image_nesting_panel" | "description_nesting_panel">;
    static packTypeDescription_imageNestingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "texture">;
    static packTypeDescription_imageNestingPanel_texture<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypeDescription_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypeDescription_descriptionNestingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "description_label" | "tts_border">;
    static packTypeDescription_descriptionNestingPanel_descriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypeDescription_descriptionNestingPanel_ttsBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypeDescription_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popularPacks<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "pack_grid" | "view_all_packs_panel">;
    static popularPacks_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popularPacks_packGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popularPacks_viewAllPacksPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "view_all_packs_button" | "view_character_creator_items">;
    static popularPacks_viewAllPacksPanel_viewAllPacksButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popularPacks_viewAllPacksPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popularPacks_viewAllPacksPanel_viewCharacterCreatorItems<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popularPacks_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popularPacksLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static packsCollection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "row_1" | "row_2">;
    static packsCollection_row1<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "pack_image_grid_item_0" | "pack_image_grid_item_1">;
    static packsCollection_row1_packImageGridItem0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packsCollection_row1_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packsCollection_row1_packImageGridItem1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packsCollection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packsCollection_row2<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "pack_image_grid_item_0" | "pack_image_grid_item_1">;
    static packsCollection_row2_packImageGridItem0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packsCollection_row2_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packsCollection_row2_packImageGridItem1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packsCollection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packImageGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bg" | "offer_button">;
    static packImageGridItem_bg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "progress_loading" | "featured_key_art">;
    static packImageGridItem_bg_featuredKeyArt<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static packImageGridItem_bg_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packImageGridItem_offerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static packImageGridItem_offerButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static packImageGridItem_offerButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static packImageGridItem_offerButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CsbBanner extends Class {
    static csbBanner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "static_button" | "animated_button">;
    static csbBanner_staticButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBanner_animatedButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoBannerCsbButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "hover">;
    static promoBannerCsbButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static promoBannerCsbButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBannerContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text" | "banner">;
    static csbBannerContent_banner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBannerContent_text<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offer_panel" | "logo_panel" | "learn_more_panel">;
    static csbBannerContent_text_logoPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "logo">;
    static csbBannerContent_text_logoPanel_logo<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBannerContent_text_offerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer">;
    static csbBannerContent_text_offerPanel_offer<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBannerContent_text_learnMorePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "learn_more">;
    static csbBannerContent_text_learnMorePanel_learnMore<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "more" | "more_chevron">;
    static csbBannerContent_text_learnMorePanel_learnMore_more<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBannerContent_text_learnMorePanel_learnMore_moreChevron<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static animatedPromoBannerCsbButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "hover">;
    static animatedPromoBannerCsbButton_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static animatedPromoBannerCsbButton_hover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static animatedCsbBannerContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text" | "banner">;
    static animatedCsbBannerContent_banner<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static animatedCsbBannerContent_text<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "offer_panel" | "logo_panel" | "learn_more_panel">;
    static animatedCsbBannerContent_text_logoPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "logo">;
    static animatedCsbBannerContent_text_logoPanel_logo<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static animatedCsbBannerContent_text_offerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "offer">;
    static animatedCsbBannerContent_text_offerPanel_offer<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static animatedCsbBannerContent_text_learnMorePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "learn_more">;
    static animatedCsbBannerContent_text_learnMorePanel_learnMore<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "more" | "more_chevron">;
    static animatedCsbBannerContent_text_learnMorePanel_learnMore_more<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static animatedCsbBannerContent_text_learnMorePanel_learnMore_moreChevron<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CsbBuy extends Class {
    static buyNowContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "terms" | "button_panel" | "padding_2" | "padding_3" | "description_stack" | "terms_and_conditions">;
    static buyNowContent_descriptionStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyNowContent_termsAndConditions<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyNowContent_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyNowContent_buttonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon_panel" | "buy_button">;
    static buyNowContent_buttonPanel_buyButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyNowContent_buttonPanel_iconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyNowContent_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyNowContent_terms<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentTextSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "text_description">;
    static contentTextSection_textDescription<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentTextSection_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentDescription<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content_description_label" | "tts_hover">;
    static contentDescription_contentDescriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentDescription_ttsHover<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialImageAndDescription<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "description_text" | "image_border">;
    static trialImageAndDescription_imageBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialImageAndDescription_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialImageAndDescription_descriptionText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tts_hover" | "descriptions_label">;
    static trialImageAndDescription_descriptionText_descriptionsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialImageAndDescription_descriptionText_ttsHover<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tts_hover" | "inner_text">;
    static titleText_innerText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleText_ttsHover<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "title_with_gradient" | "image_and_description">;
    static descriptionStack_titleWithGradient<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionStack_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionStack_imageAndDescription<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsAndConditions<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "terms_panel">;
    static termsAndConditions_termsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsAndConditionsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "name_label" | "terms_string_panel">;
    static termsAndConditionsPanel_nameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsAndConditionsPanel_termsStringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "buttons_stack_panel" | "banner_fill">;
    static termsAndConditionsPanel_termsStringPanel_bannerFill<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsAndConditionsPanel_termsStringPanel_buttonsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "view_terms_button" | "privacy_policy_button" | "agree_panel">;
    static termsAndConditionsPanel_termsStringPanel_buttonsStackPanel_agreePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "checkbox_control">;
    static termsAndConditionsPanel_termsStringPanel_buttonsStackPanel_agreePanel_checkboxControl<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsAndConditionsPanel_termsStringPanel_buttonsStackPanel_viewTermsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsAndConditionsPanel_termsStringPanel_buttonsStackPanel_privacyPolicyButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mctenTextCenteringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_text">;
    static mctenTextCenteringPanel_buttonText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewTermsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static privacyPolicyButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "buy_button">;
    static buyButtonPanel_buyButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolTipIconPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "issue_icon">;
    static toolTipIconPanel_issueIcon<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover" | "info_icon">;
    static toolTipIconPanel_issueIcon_infoIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolTipIconPanel_issueIcon_default<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolTipIconPanel_issueIcon_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toolTipIconPanel_issueIcon_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "button_chevron_panel" | "button_text_centering_panel">;
    static buyButtonContent_buttonChevronPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "buy_button_chevron">;
    static buyButtonContent_buttonChevronPanel_buyButtonChevron<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyButtonContent_buttonTextCenteringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "panel_icon">;
    static infoIcon_panelIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CommonCsb extends Class {
    static csbExpirationBanner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "text" | "icon">;
    static csbExpirationBanner_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbExpirationBanner_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbExpirationBanner_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbIconLarge<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbHeader<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label_a_text_csb" | "label_space_text_csb" | "label_b_text_pass">;
    static csbHeader_labelATextCsb<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbHeader_labelSpaceTextCsb<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbHeader_labelBTextPass<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbHeaderTwoLines<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_header" | "panel_centre_second_line">;
    static csbHeaderTwoLines_topHeader<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbHeaderTwoLines_panelCentreSecondLine<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "sub_header">;
    static csbHeaderTwoLines_panelCentreSecondLine_subHeader<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbGoldButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbGoldTextButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CsbPurchaseAmazondevicewarning extends Class {
    static csbPurchaseAmazondevicewarningScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel">;
    static screenContent_mainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "art_panel" | "text_panel_1" | "text_panel_2">;
    static mainPanel_textPanel1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static mainPanel_textPanel1_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_artPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "art">;
    static mainPanel_artPanel_art<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_textPanel2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static mainPanel_textPanel2_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static backButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CsbPurchaseWarning extends Class {
    static csbPurchaseWarningScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseWarningScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel">;
    static purchaseWarningScreenContent_mainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningModalMainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "art_panel" | "text_panel_1" | "text_panel_2">;
    static warningModalMainPanel_textPanel1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static warningModalMainPanel_textPanel1_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningModalMainPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningModalMainPanel_artPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "art">;
    static warningModalMainPanel_artPanel_art<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningModalMainPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningModalMainPanel_textPanel2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static warningModalMainPanel_textPanel2_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningModalBackButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CsbSubscriptionPanel extends Class {
    static csbContainer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "fill" | "border" | "panel_contents">;
    static csbContainer_fill<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbContainer_border<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbContainer_panelContents<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content_container" | "button_panel_spacer" | "csb_buttons">;
    static csbContainer_panelContents_contentContainer<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_02" | "side_image_stack_left" | "side_stack_right">;
    static csbContainer_panelContents_contentContainer_sideImageStackLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "csb_image">;
    static csbContainer_panelContents_contentContainer_sideImageStackLeft_csbImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbContainer_panelContents_contentContainer_padding02<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbContainer_panelContents_contentContainer_sideStackRight<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "interior_content_stack">;
    static csbContainer_panelContents_contentContainer_sideStackRight_interiorContentStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "panel_label" | "interior_top_padding_01" | "ln_01_container" | "ln_02_container" | "ln_03_container" | "interior_top_padding02">;
    static csbContainer_panelContents_contentContainer_sideStackRight_interiorContentStack_panelLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbContainer_panelContents_contentContainer_sideStackRight_interiorContentStack_interiorTopPadding01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbContainer_panelContents_contentContainer_sideStackRight_interiorContentStack_ln01Container<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbContainer_panelContents_contentContainer_sideStackRight_interiorContentStack_ln02Container<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbContainer_panelContents_contentContainer_sideStackRight_interiorContentStack_ln03Container<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbContainer_panelContents_contentContainer_sideStackRight_interiorContentStack_interiorTopPadding02<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbContainer_panelContents_buttonPanelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbContainer_panelContents_csbButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_01" | "button_panel_padding" | "$left_button" | "csb_info_button">;
    static csbContainer_panelContents_csbButtons_buttonPanelPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbContainer_panelContents_csbButtons_$leftButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbContainer_panelContents_csbButtons_padding01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbContainer_panelContents_csbButtons_csbInfoButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbMarketplaceBenefit<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "bullet_holder_01" | "panel_details_ln1">;
    static csbMarketplaceBenefit_bulletHolder01<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "bullet_spacer" | "bullet_01">;
    static csbMarketplaceBenefit_bulletHolder01_bulletSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbMarketplaceBenefit_bulletHolder01_bullet01<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbMarketplaceBenefit_panelDetailsLn1<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBuyContainer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "csb_buy_button">;
    static csbBuyContainer_csbBuyButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBuyButtonText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbCancelButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CsbUpsell extends Class {
    static csbUpsellScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellCompareDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "csb_upsell_compare_main_screen">;
    static csbUpsellCompareDialog_csbUpsellCompareMainScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellPopupContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "two_side_panels">;
    static csbUpsellPopupContent_twoSidePanels<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "border_panel_left" | "middle_spacer" | "border_panel_right">;
    static csbUpsellPopupContent_twoSidePanels_borderPanelLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "border" | "background_panel" | "left_side_panel" | "button_centering">;
    static csbUpsellPopupContent_twoSidePanels_borderPanelLeft_border<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellPopupContent_twoSidePanels_borderPanelLeft_backgroundPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellPopupContent_twoSidePanels_borderPanelLeft_leftSidePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellPopupContent_twoSidePanels_borderPanelLeft_buttonCentering<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "learn_more_left">;
    static csbUpsellPopupContent_twoSidePanels_borderPanelLeft_buttonCentering_learnMoreLeft<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellPopupContent_twoSidePanels_middleSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellPopupContent_twoSidePanels_borderPanelRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "border" | "background_panel" | "button_centering" | "right_side_panel">;
    static csbUpsellPopupContent_twoSidePanels_borderPanelRight_border<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellPopupContent_twoSidePanels_borderPanelRight_backgroundPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellPopupContent_twoSidePanels_borderPanelRight_rightSidePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellPopupContent_twoSidePanels_borderPanelRight_buttonCentering<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "learn_more_right">;
    static csbUpsellPopupContent_twoSidePanels_borderPanelRight_buttonCentering_learnMoreRight<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellLeftSidePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "middle_spacer" | "upper_half" | "bottom_half">;
    static csbUpsellLeftSidePanel_upperHalf<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "header_panel">;
    static csbUpsellLeftSidePanel_upperHalf_headerPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_header" | "blank_space" | "price_amount">;
    static csbUpsellLeftSidePanel_upperHalf_headerPanel_blankSpace<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellLeftSidePanel_upperHalf_headerPanel_topHeader<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellLeftSidePanel_upperHalf_headerPanel_priceAmount<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellLeftSidePanel_middleSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellLeftSidePanel_bottomHalf<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "padding_b" | "bullet_one" | "bullet_two" | "bullet_three">;
    static csbUpsellLeftSidePanel_bottomHalf_paddingB<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellLeftSidePanel_bottomHalf_bulletOne<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellLeftSidePanel_bottomHalf_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellLeftSidePanel_bottomHalf_bulletTwo<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellLeftSidePanel_bottomHalf_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellLeftSidePanel_bottomHalf_bulletThree<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellRightSidePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "middle_spacer" | "upper_half" | "bottom_half">;
    static csbUpsellRightSidePanel_upperHalf<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "header_panel" | "marketing_banner">;
    static csbUpsellRightSidePanel_upperHalf_marketingBanner<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background_color" | "marketing_banner_label">;
    static csbUpsellRightSidePanel_upperHalf_marketingBanner_backgroundColor<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellRightSidePanel_upperHalf_marketingBanner_marketingBannerLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellRightSidePanel_upperHalf_headerPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_header" | "price_amount">;
    static csbUpsellRightSidePanel_upperHalf_headerPanel_topHeader<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellRightSidePanel_upperHalf_headerPanel_priceAmount<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellRightSidePanel_middleSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellRightSidePanel_bottomHalf<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "padding_b" | "bullet_one" | "bullet_two" | "bullet_three">;
    static csbUpsellRightSidePanel_bottomHalf_paddingB<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellRightSidePanel_bottomHalf_bulletOne<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellRightSidePanel_bottomHalf_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellRightSidePanel_bottomHalf_bulletTwo<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellRightSidePanel_bottomHalf_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbUpsellRightSidePanel_bottomHalf_bulletThree<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBigPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBulletPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "desktop" | "pocket">;
    static csbBulletPadding_desktop<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBulletPadding_pocket<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBulletDesktopPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBulletPocketPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBullet<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_icon_left" | "padding_icon_vertical" | "padding_icon_right">;
    static csbBullet_paddingIconLeft<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBullet_paddingIconVertical<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_vertical" | "label_icon">;
    static csbBullet_paddingIconVertical_paddingVertical<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBullet_paddingIconVertical_labelIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBullet_paddingIconRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBulletPoint<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label_text" | "bullet_icon">;
    static csbBulletPoint_bulletIcon<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBulletPoint_labelText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBulletSplitPoint<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label_text" | "space" | "bullet_icon" | "csb_name">;
    static csbBulletSplitPoint_bulletIcon<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBulletSplitPoint_labelText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBulletSplitPoint_space<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label_text_csb">;
    static csbBulletSplitPoint_space_labelTextCsb<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbBulletSplitPoint_csbName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "csb_name_string">;
    static csbBulletSplitPoint_csbName_csbNameString<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbPrice<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "price_details">;
    static csbPrice_priceDetails<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbPriceDetails<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "price_panel_1" | "price_panel_first_period">;
    static csbPriceDetails_pricePanel1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "amount">;
    static csbPriceDetails_pricePanel1_amount<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbPriceDetails_pricePanelFirstPeriod<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "second_line">;
    static csbPriceDetails_pricePanelFirstPeriod_secondLine<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbLearnMore<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "learn_more">;
    static csbLearnMore_learnMore<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CsbPacks extends Class {
    static viewAllPacksScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewPacksScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel">;
    static viewPacksScreenContent_mainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static csbViewPacksScreenMainPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "progress_loading" | "offers">;
    static mainPanel_offers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_0" | "store_factory">;
    static scrollingContentStack_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack_storeFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CsbWelcome extends Class {
    static csbWelcomeScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static welcomeScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel">;
    static welcomeScreenContent_mainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static welcomeModalMainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "text_panel" | "art_panel">;
    static welcomeModalMainPanel_artPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "art">;
    static welcomeModalMainPanel_artPanel_art<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static welcomeModalMainPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static welcomeModalMainPanel_textPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static welcomeModalMainPanel_textPanel_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static welcomeModalContinueButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CsbFaq extends Class {
    static faqBottomButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqImageSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "faq_image">;
    static faqImageSection_faqImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqTextSectionBody<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqTextQuestion<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqTextSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "faq_text_question" | "faq_text_answer">;
    static faqTextSection_faqTextQuestion<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqTextSection_faqTextAnswer<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqPriceBoundTextSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "faq_text_question" | "faq_text_answer">;
    static faqPriceBoundTextSection_faqTextQuestion<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqPriceBoundTextSection_faqTextAnswer<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqQuestionBody<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "0">;
    static faqQuestionBody_0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqQuestionBodyStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqQuestionBodyHorzPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageLeftFaqQuestionBody<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageRightFaqQuestionBody<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageLeftFaqPriceBound<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageRightFaqPriceBound<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqSectionHeaderSpace<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqSectionDivider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "faq_button" | "faq_question_1" | "faq_question_1_divider" | "faq_question_2" | "faq_question_2_divider" | "faq_question_3" | "faq_question_3_divider" | "faq_question_4" | "faq_question_4_divider" | "faq_question_5" | "faq_section_vertical_padding_1" | "faq_header" | "faq_section_vertical_padding_2" | "faq_question_5_divider" | "faq_question_6" | "faq_question_6_divider" | "faq_question_7" | "faq_question_7_divider" | "faq_question_8" | "faq_question_8_divider" | "faq_question_9" | "faq_question_9_divider" | "faq_question_10" | "faq_question_10_divider" | "faq_bottom_padding">;
    static faqContentSection_faqSectionVerticalPadding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqHeader<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqSectionVerticalPadding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion1<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion1Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion2<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion2Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion3<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion3Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion4<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion4Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion5<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion5Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion6<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion6Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion7<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion7Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion8<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion8Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion9<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion9Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion10<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion10Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqBottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bottom_left_particles">;
    static faqContentSection_faqBottomPadding_bottomLeftParticles<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class CsbLanding extends Class {
    static landingContentSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "landing_section_vertical_padding" | "landing_content">;
    static landingContentSection_landingSectionVerticalPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static landingContentSection_landingContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title_stack" | "vertical_small_spacer_0" | "vertical_small_spacer_1" | "info_stack" | "vertical_small_spacer_2">;
    static landingContentSection_landingContent_titleStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static landingContentSection_landingContent_verticalSmallSpacer0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static landingContentSection_landingContent_verticalSmallSpacer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static landingContentSection_landingContent_infoStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static landingContentSection_landingContent_verticalSmallSpacer2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalSmallSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalSmallSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalLargeSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "sign_in_button" | "action_button" | "title_image_panel" | "title_space" | "vertical_space2" | "gradient_panel" | "gradient_panel2">;
    static titleStack_titleImagePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleStack_titleSpace<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleStack_actionButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleStack_signInButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleStack_verticalSpace2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleStack_gradientPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label_with_gradient" | "tts_hover">;
    static titleStack_gradientPanel_labelWithGradient<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleStack_gradientPanel_ttsHover<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleStack_gradientPanel2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tts_hover" | "label_with_gradient2">;
    static titleStack_gradientPanel2_labelWithGradient2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleStack_gradientPanel2_ttsHover<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static subscriptionIncludesText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static freeTrialText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleSpace<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleImagePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "vertical_small_spacer_1" | "vertical_small_spacer_2" | "title_image_container">;
    static titleImagePanel_verticalSmallSpacer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleImagePanel_titleImageContainer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_image">;
    static titleImagePanel_titleImageContainer_titleImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleImagePanel_verticalSmallSpacer2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "info_section_image" | "info_description_stack_retail">;
    static infoStack_infoSectionImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoStack_infoDescriptionStackRetail<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoDescriptionStackRetail<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "info_section_stack_1">;
    static infoDescriptionStackRetail_infoSectionStack1<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "horizontal_small_spacer" | "info_section_text_1">;
    static infoDescriptionStackRetail_infoSectionStack1_horizontalSmallSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoDescriptionStackRetail_infoSectionStack1_infoSectionText1<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionImageWithBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText1<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "vertical_small_spacer_0" | "vertical_small_spacer_1" | "vertical_small_spacer_2" | "info_section_text" | "info_text_bullet_1" | "info_text_bullet_2" | "info_text_bullet_8" | "vertical_small_spacer_8" | "info_text_bullet_3" | "vertical_small_spacer_3" | "info_text_bullet_4" | "vertical_small_spacer_4" | "info_text_bullet_5" | "vertical_small_spacer_5" | "info_text_bullet_6" | "vertical_small_spacer_6" | "info_text_bullet_7" | "vertical_large_spacer_6">;
    static infoSectionText1_infoSectionText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText1_verticalSmallSpacer0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText1_infoTextBullet1<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText1_verticalSmallSpacer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText1_infoTextBullet2<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText1_verticalSmallSpacer2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText1_infoTextBullet8<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText1_verticalSmallSpacer8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText1_infoTextBullet3<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText1_verticalSmallSpacer3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText1_infoTextBullet4<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText1_verticalSmallSpacer4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText1_infoTextBullet5<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText1_verticalSmallSpacer5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText1_infoTextBullet6<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText1_verticalSmallSpacer6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText1_infoTextBullet7<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText1_verticalLargeSpacer6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText2<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "vertical_small_spacer_0" | "vertical_small_spacer_1" | "info_text_bullet_1" | "info_text_bullet_2" | "vertical_small_spacer_3" | "info_text_bullet_4" | "info_text_bullet_5">;
    static infoSectionText2_infoTextBullet1<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText2_verticalSmallSpacer0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText2_infoTextBullet2<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText2_verticalSmallSpacer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText2_infoTextBullet4<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText2_verticalSmallSpacer3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText2_infoTextBullet5<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoTextBullet<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "bullet_spacer" | "info_text_bullet_bullet" | "info_text_bullet_body" | "bullet_spacer_end">;
    static infoTextBullet_infoTextBulletBullet<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoTextBullet_bulletSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoTextBullet_infoTextBulletBody<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoTextBullet_bulletSpacerEnd<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoTextUnbulletted<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "info_text_bullet_body">;
    static infoTextUnbulletted_infoTextBulletBody<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoTextBody<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "tts_border" | "text_body">;
    static infoTextBody_textBody<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoTextBody_ttsBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class SdlDropdowns extends Class {
    static sdlDropdownRows<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "container_panel">;
    static sdlDropdownRows_containerPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "toggle" | "pad">;
    static sdlDropdownRows_containerPanel_toggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlDropdownRows_containerPanel_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlRowsToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class SdlImageRow extends Class {
    static imageRowFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static bufferPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static singleImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image_with_border" | "image_selector">;
    static singleImage_imageWithBorder<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading" | "screenshot_image" | "dark_border">;
    static singleImage_imageWithBorder_screenshotImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static singleImage_imageWithBorder_darkBorder<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static singleImage_imageWithBorder_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static singleImage_imageSelector<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static doubleImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tripleImageWithBuffer<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "buffer_panel_in_1" | "buffer_panel_in_2" | "triple_image" | "buffer_panel_out_1" | "buffer_panel_out_2">;
    static tripleImageWithBuffer_bufferPanelIn1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tripleImageWithBuffer_bufferPanelIn2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tripleImageWithBuffer_tripleImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tripleImageWithBuffer_bufferPanelOut1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static tripleImageWithBuffer_bufferPanelOut2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class SdlLabel extends Class {
    static sdlLabelFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlMcTenLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class SdlTextRow extends Class {
    static sdlTextRowFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlHeaderComponentFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static labelButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlHeaderComponentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "header_background" | "header_internals" | "header_highlight" | "text_row_header_text">;
    static sdlHeaderComponentPanel_headerBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlHeaderComponentPanel_headerInternals<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlHeaderComponentPanel_headerHighlight<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlHeaderComponentPanel_textRowHeaderText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlTextRowComponentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text_background" | "text_row_selector" | "text_row_background" | "text_row_component_text">;
    static sdlTextRowComponentPanel_textBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlTextRowComponentPanel_textRowSelector<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlTextRowComponentPanel_textRowBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static sdlTextRowComponentPanel_textRowComponentText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soloTextRow<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "buffer_panel_front" | "buffer_panel_back" | "headercomp_and_textcomp_panel">;
    static soloTextRow_bufferPanelFront<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soloTextRow_headercompAndTextcompPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "text_row_header_text_panel" | "text_row_text_panel">;
    static soloTextRow_headercompAndTextcompPanel_textRowHeaderTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soloTextRow_headercompAndTextcompPanel_textRowTextPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soloTextRow_bufferPanelBack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class RealmsPlusContent extends Class {
    static realmsPlusContentSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content_section_top_padding" | "content_sections" | "content_section_bottom_padding">;
    static realmsPlusContentSection_contentSectionTopPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusContentSection_contentSections<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusContentSection_contentSectionBottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPackTypesSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "includes_marketplace_pass_wrapper" | "padding_contentSub" | "pack_types_wrapper">;
    static contentPackTypesSection_includesMarketplacePassWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPackTypesSection_paddingContentSub<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPackTypesSection_packTypesWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPacksIncludedSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "section_divider" | "popular_packs">;
    static contentPacksIncludedSection_popularPacks<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentPacksIncludedSection_sectionDivider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static personaRow<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "persona">;
    static personaRow_persona<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldsRow<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypes<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "middle_row" | "bottom_row" | "bottom_contentSub">;
    static packTypes_middleRow<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "textures" | "worlds_contentSub">;
    static packTypes_middleRow_worldsContentSub<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypes_middleRow_textures<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypes_bottomRow<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "mashups" | "skins_persona_contentSub">;
    static packTypes_bottomRow_skinsPersonaContentSub<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypes_bottomRow_mashups<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypes_bottomContentSub<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static skins<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static friendsGetAccess<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypeRowPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypeDescription<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_0" | "image_nesting_panel" | "description_nesting_panel">;
    static packTypeDescription_imageNestingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "texture">;
    static packTypeDescription_imageNestingPanel_texture<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypeDescription_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packTypeDescription_descriptionNestingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "description_label">;
    static packTypeDescription_descriptionNestingPanel_descriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static popularPacks<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "padding_2" | "pack_grid" | "view_all_packs_panel" | "view_character_creator_items_button">;
    static popularPacks_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popularPacks_packGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popularPacks_viewAllPacksPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "view_all_packs_button">;
    static popularPacks_viewAllPacksPanel_viewAllPacksButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popularPacks_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popularPacks_viewCharacterCreatorItemsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static popularPacks_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static popularPacksLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static includesMarketplacePass<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static includesMarketplacePassLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static packsCollection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_2" | "row_1" | "row_2">;
    static packsCollection_row1<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "pack_image_grid_item_0" | "pack_image_grid_item_1">;
    static packsCollection_row1_packImageGridItem0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packsCollection_row1_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packsCollection_row1_packImageGridItem1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packsCollection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packsCollection_row2<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "pack_image_grid_item_0" | "pack_image_grid_item_1">;
    static packsCollection_row2_packImageGridItem0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packsCollection_row2_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packsCollection_row2_packImageGridItem1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packsCollection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packImageGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "bg" | "offer_button">;
    static packImageGridItem_bg<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "progress_loading" | "featured_key_art">;
    static packImageGridItem_bg_featuredKeyArt<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static packImageGridItem_bg_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static packImageGridItem_offerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, "default" | "pressed" | "hover">;
    static packImageGridItem_offerButton_default<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static packImageGridItem_offerButton_hover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static packImageGridItem_offerButton_pressed<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class RealmsPlusFaq extends Class {
    static faqImageSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqImageLocal<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqImageType<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "0">;
    static faqImageType_0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqTextSectionBody<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqTextQuestion<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqTextSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "faq_text_question" | "faq_text_answer">;
    static faqTextSection_faqTextQuestion<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqTextSection_faqTextAnswer<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqPriceBoundTextSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "faq_text_question" | "faq_text_answer">;
    static faqPriceBoundTextSection_faqTextQuestion<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqPriceBoundTextSection_faqTextAnswer<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqQuestionBody<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "0">;
    static faqQuestionBody_0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqQuestionBodyStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqQuestionBodyHorzPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageLeftFaqQuestionBody<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageRightFaqQuestionBody<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageLeftFaqQuestionBodyFlip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "faq_question_left">;
    static imageLeftFaqQuestionBodyFlip_faqQuestionLeft<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageRightFaqQuestionBodyFlip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "faq_question_right">;
    static imageRightFaqQuestionBodyFlip_faqQuestionRight<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageLeftFaqPriceBound<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqSectionHeaderSpace<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqSectionDivider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "faq_question_1" | "faq_question_1_divider" | "faq_question_2" | "faq_question_2_divider" | "faq_question_3" | "faq_question_3_divider" | "faq_question_4" | "faq_question_4_divider" | "faq_question_5" | "faq_header" | "faq_question_5_divider" | "faq_question_6" | "faq_question_6_divider" | "faq_question_7" | "faq_question_7_divider" | "faq_question_8" | "faq_question_8_divider" | "faq_question_9" | "faq_question_9_divider" | "faq_question_10" | "faq_question_10_divider" | "content_section_top_padding_1" | "content_section_top_padding_2" | "faq_question_11" | "content_section_top_padding_3">;
    static faqContentSection_contentSectionTopPadding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqHeader<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_contentSectionTopPadding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion1<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion1Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion2<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion2Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion3<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion3Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion4<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion4Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion5Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion6Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion7Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion8Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion9Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion10<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion10Divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_faqQuestion11<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static faqContentSection_contentSectionTopPadding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class RealmsPlusLanding extends Class {
    static landingContentSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "landing_content">;
    static landingContentSection_landingContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider_panel" | "title_stack" | "vertical_small_spacer_0" | "vertical_small_spacer_1" | "info_stack" | "vertical_small_spacer_2">;
    static landingContentSection_landingContent_titleStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static landingContentSection_landingContent_verticalSmallSpacer0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static landingContentSection_landingContent_dividerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "section_divider">;
    static landingContentSection_landingContent_dividerPanel_sectionDivider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static landingContentSection_landingContent_verticalSmallSpacer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static landingContentSection_landingContent_infoStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static landingContentSection_landingContent_verticalSmallSpacer2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static horizontalSmallSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalSmallSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalMedSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static verticalLargeSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "sign_in_button" | "action_button" | "vertical_space" | "title_image_panel" | "vertical_space2" | "gradient_panel">;
    static titleStack_titleImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleStack_gradientPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label_with_gradient_wrapper">;
    static titleStack_gradientPanel_labelWithGradientWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleStack_verticalSpace<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleStack_actionButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleStack_signInButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleStack_verticalSpace2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static labelWithGradient<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static freeTrialText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_image_container" | "title_image_pre_release_container">;
    static titleImagePanel_titleImageContainer<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "title_image" | "title_art_image">;
    static titleImagePanel_titleImageContainer_titleImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleImagePanel_titleImageContainer_titleArtImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleImagePanel_titleImagePreReleaseContainer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title_image_pre_release">;
    static titleImagePanel_titleImagePreReleaseContainer_titleImagePreRelease<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "info_stack">;
    static infoStack_infoStack<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "info_description_stack_retail" | "info_description_stack_preview">;
    static infoStack_infoStack_infoDescriptionStackRetail<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoStack_infoStack_infoDescriptionStackPreview<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoDescriptionStackRetail<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "info_section_stack_1" | "vertical_med_spacer0" | "divider_centering_panel" | "vertical_med_spacer1" | "info_section_stack_recently_added" | "vertical_med_spacer2" | "divider_centering_panel2" | "vertical_med_spacer3" | "info_section_stack_2">;
    static infoDescriptionStackRetail_infoSectionStack1<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "horizontal_small_spacer" | "info_section_text_1_wrapper">;
    static infoDescriptionStackRetail_infoSectionStack1_horizontalSmallSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoDescriptionStackRetail_infoSectionStack1_infoSectionText1Wrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoDescriptionStackRetail_verticalMedSpacer0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoDescriptionStackRetail_dividerCenteringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "divider">;
    static infoDescriptionStackRetail_dividerCenteringPanel_divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoDescriptionStackRetail_verticalMedSpacer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoDescriptionStackRetail_infoSectionStackRecentlyAdded<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "horizontal_small_spacer" | "info_section_text_recently_added_wrapper">;
    static infoDescriptionStackRetail_infoSectionStackRecentlyAdded_horizontalSmallSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoDescriptionStackRetail_infoSectionStackRecentlyAdded_infoSectionTextRecentlyAddedWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoDescriptionStackRetail_verticalMedSpacer2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoDescriptionStackRetail_dividerCenteringPanel2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "divider2">;
    static infoDescriptionStackRetail_dividerCenteringPanel2_divider2<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoDescriptionStackRetail_verticalMedSpacer3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoDescriptionStackRetail_infoSectionStack2<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "horizontal_small_spacer" | "info_section_text_2_wrapper">;
    static infoDescriptionStackRetail_infoSectionStack2_horizontalSmallSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoDescriptionStackRetail_infoSectionStack2_infoSectionText2Wrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoDescriptionStackPrerelease<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "info_section_stack">;
    static infoDescriptionStackPrerelease_infoSectionStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "horizontal_large_spacer" | "info_section_text_3_wrapper">;
    static infoDescriptionStackPrerelease_infoSectionStack_horizontalLargeSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoDescriptionStackPrerelease_infoSectionStack_infoSectionText3Wrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText1<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "vertical_small_spacer_0" | "vertical_small_spacer_1" | "info_text_bullet_1" | "info_text_bullet_2" | "info_text_bullet_3">;
    static infoSectionText1_infoTextBullet1<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText1_verticalSmallSpacer0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText1_infoTextBullet2<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText1_verticalSmallSpacer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText1_infoTextBullet3<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionTextRecentlyAdded<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "vertical_small_spacer_1" | "vertical_small_spacer_2" | "info_text_bullet_1" | "info_text_bullet_2" | "recently_added_header" | "info_text_bullet_contentSub">;
    static infoSectionTextRecentlyAdded_recentlyAddedHeader<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionTextRecentlyAdded_infoTextBulletContentSub<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "vertical_small_spacer_0" | "info_text_bullet_0">;
    static infoSectionTextRecentlyAdded_infoTextBulletContentSub_verticalSmallSpacer0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionTextRecentlyAdded_infoTextBulletContentSub_infoTextBullet0<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionTextRecentlyAdded_verticalSmallSpacer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionTextRecentlyAdded_infoTextBullet1<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionTextRecentlyAdded_verticalSmallSpacer2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionTextRecentlyAdded_infoTextBullet2<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText2<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "vertical_small_spacer_0" | "vertical_small_spacer_1" | "info_text_bullet_2" | "info_text_bullet_3" | "info_text_bullet_4" | "info_text_bullet_notFreeTrial">;
    static infoSectionText2_infoTextBullet2<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText2_verticalSmallSpacer0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText2_infoTextBullet3<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText2_verticalSmallSpacer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText2_infoTextBullet4<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText2_infoTextBulletNotFreeTrial<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "vertical_small_spacer" | "info_text_bullet_4">;
    static infoSectionText2_infoTextBulletNotFreeTrial_verticalSmallSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText2_infoTextBulletNotFreeTrial_infoTextBullet4<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText3<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "info_text_unbulletted_1" | "vertical_large_spacer_0" | "info_text_unbulletted_2" | "vertical_large_spacer_1" | "info_text_unbulletted_3" | "vertical_large_spacer_2" | "info_text_unbulletted_4">;
    static infoSectionText3_infoTextUnbulletted1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText3_verticalLargeSpacer0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText3_infoTextUnbulletted2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText3_verticalLargeSpacer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText3_infoTextUnbulletted3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText3_verticalLargeSpacer2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText3_infoTextUnbulletted4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoSectionText<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoTextBullet<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "info_text_bullet_bullet" | "info_text_bullet_body">;
    static infoTextBullet_infoTextBulletBullet<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoTextBullet_infoTextBulletBody<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static infoTextUnbulletted<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "info_text_bullet_body">;
    static infoTextUnbulletted_infoTextBulletBody<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class RealmsPlusBuy extends Class {
    static buyNowContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "realm_name" | "padding_2" | "padding_3" | "description_stack" | "terms_and_conditions" | "buy_button" | "platform_terms_factory">;
    static buyNowContent_descriptionStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyNowContent_realmName<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyNowContent_termsAndConditions<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyNowContent_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyNowContent_buyButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyNowContent_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyNowContent_platformTermsFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentTextSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "text_description_wrapper">;
    static contentTextSection_textDescriptionWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentTextSection_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentDescription<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content_description_label">;
    static contentDescription_contentDescriptionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialImageAndDescription<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "realms_image" | "description_text_wrapper">;
    static trialImageAndDescription_realmsImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialImageAndDescription_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static trialImageAndDescription_descriptionTextWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static titleWithGradient<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "image_and_description" | "title_with_gradient_wrapper">;
    static descriptionStack_titleWithGradientWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionStack_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static descriptionStack_imageAndDescription<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmNameStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_0" | "realm_name_label" | "realm_name_text_box">;
    static realmNameStack_realmNameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmNameStack_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmNameStack_realmNameTextBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsAndConditions<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "terms_panel">;
    static termsAndConditions_termsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsAndConditionsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "name_label" | "terms_string_panel">;
    static termsAndConditionsPanel_nameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsAndConditionsPanel_termsStringPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "buttons_stack_panel" | "banner_fill">;
    static termsAndConditionsPanel_termsStringPanel_bannerFill<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsAndConditionsPanel_termsStringPanel_buttonsStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "view_terms_button" | "privacy_policy_button" | "agree_panel">;
    static termsAndConditionsPanel_termsStringPanel_buttonsStackPanel_agreePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "checkbox_control">;
    static termsAndConditionsPanel_termsStringPanel_buttonsStackPanel_agreePanel_checkboxControl<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsAndConditionsPanel_termsStringPanel_buttonsStackPanel_viewTermsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static termsAndConditionsPanel_termsStringPanel_buttonsStackPanel_privacyPolicyButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buttonText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewTermsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static privacyPolicyButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "buy_button">;
    static buyButtonPanel_buyButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyButtonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "button_text" | "button_chevron_panel">;
    static buyButtonContent_buttonChevronPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "buy_button_chevron">;
    static buyButtonContent_buttonChevronPanel_buyButtonChevron<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static buyButtonContent_buttonText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class RealmsPlusPurchaseWarning extends Class {
    static realmsPlusPurchaseWarningScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static purchaseWarningScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel">;
    static purchaseWarningScreenContent_mainPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningModalMainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "text_panel" | "art_panel">;
    static warningModalMainPanel_artPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "art">;
    static warningModalMainPanel_artPanel_art<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningModalMainPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningModalMainPanel_textPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "description_panel" | "checkbox_with_label_panel">;
    static warningModalMainPanel_textPanel_descriptionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "description_text">;
    static warningModalMainPanel_textPanel_descriptionPanel_descriptionText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningModalMainPanel_textPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningModalMainPanel_textPanel_checkboxWithLabelPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "label_panel" | "checkbox_panel">;
    static warningModalMainPanel_textPanel_checkboxWithLabelPanel_checkboxPanel<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningModalMainPanel_textPanel_checkboxWithLabelPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningModalMainPanel_textPanel_checkboxWithLabelPanel_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label_text">;
    static warningModalMainPanel_textPanel_checkboxWithLabelPanel_labelPanel_labelText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningModalButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "back_button" | "continue_button">;
    static warningModalButtonPanel_backButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningModalButtonPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static warningModalButtonPanel_continueButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class RealmsPlusPacks extends Class {
    static viewAllPacksScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewPacksScreenContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "main_panel">;
    static viewPacksScreenContent_mainPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusViewPacksScreenMainPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, "progress_loading" | "offers">;
    static mainPanel_offers<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mainPanel_progressLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_0" | "store_factory">;
    static scrollingContentStack_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollingContentStack_storeFactory<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class ControlsSection extends Class {
    static bindingButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static bindingButtonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "default_label">;
    static bindingButtonContent_defaultLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageBindingButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageBindingButtonContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "base_icon_image" | "default_label">;
    static imageBindingButtonContent_baseIconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static imageBindingButtonContent_defaultLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static arrowReset<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static resetBindingButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static keymappingItemParent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "keymapping_row">;
    static keymappingItemParent_keymappingRow<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keymappingItem<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "option_info_label_control" | "keymapping_button_0" | "keymapping_button_1">;
    static keymappingItem_optionInfoLabelControl<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "keymapping_label_control">;
    static keymappingItem_optionInfoLabelControl_keymappingLabelControl<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static keymappingItem_keymappingButton0<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static keymappingItem_keymappingButton1<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static keymappingGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static fullKeymappingGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadMappingItem<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "option_info_label_control" | "keymapping_button_0" | "keymapping_button_1">;
    static gamepadMappingItem_optionInfoLabelControl<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "keymapping_label_control">;
    static gamepadMappingItem_optionInfoLabelControl_keymappingLabelControl<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadMappingItem_keymappingButton0<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadMappingItem_keymappingButton1<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamepadMappingGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardAndMouseButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardAndMouseSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "reset_button" | "option_slider_0" | "option_slider_damen" | "option_toggle_0" | "option_toggle_1" | "option_toggle_2" | "option_toggle_full_keyboard_gameplay" | "option_toggle_show_keyboard_prompts" | "option_toggle_show_learning_prompts" | "keyboard_section" | "full_keyboard_section">;
    static keyboardAndMouseSection_optionSlider0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardAndMouseSection_optionSliderDamen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardAndMouseSection_optionToggle0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardAndMouseSection_optionToggle1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardAndMouseSection_optionToggle2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardAndMouseSection_optionToggleFullKeyboardGameplay<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardAndMouseSection_optionToggleShowKeyboardPrompts<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardAndMouseSection_optionToggleShowLearningPrompts<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardAndMouseSection_keyboardSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "option_group_label" | "keyboard_keymapping_grid" | "control_alt_chords_standard_keyboard_section">;
    static keyboardAndMouseSection_keyboardSection_optionGroupLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardAndMouseSection_keyboardSection_keyboardKeymappingGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardAndMouseSection_keyboardSection_controlAltChordsStandardKeyboardSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "option_group_label" | "control_alt_chord_keymapping_grid">;
    static keyboardAndMouseSection_keyboardSection_controlAltChordsStandardKeyboardSection_optionGroupLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardAndMouseSection_keyboardSection_controlAltChordsStandardKeyboardSection_controlAltChordKeymappingGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardAndMouseSection_fullKeyboardSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "option_slider_smooth_rotation_speed" | "full_keyboard_label" | "keyboard_full_keymapping_grid" | "control_alt_chords_full_keyboard_section">;
    static keyboardAndMouseSection_fullKeyboardSection_optionSliderSmoothRotationSpeed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardAndMouseSection_fullKeyboardSection_fullKeyboardLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardAndMouseSection_fullKeyboardSection_keyboardFullKeymappingGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardAndMouseSection_fullKeyboardSection_controlAltChordsFullKeyboardSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "option_group_label" | "control_alt_chord_keymapping_grid">;
    static keyboardAndMouseSection_fullKeyboardSection_controlAltChordsFullKeyboardSection_optionGroupLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardAndMouseSection_fullKeyboardSection_controlAltChordsFullKeyboardSection_controlAltChordKeymappingGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static keyboardAndMouseSection_resetButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static controllerButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static controllerSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "reset_button" | "option_slider_0" | "option_slider_damen" | "option_toggle_0" | "option_toggle_1" | "option_group_label" | "option_toggle9" | "option_toggle10" | "option_toggle_11" | "gamepad_swap_ab" | "gamepad_swap_xy" | "gamepad_cursor_sensitivity_option_slider" | "option_toggle_3" | "option_toggle_4" | "option_toggle_5" | "gamepad_keymapping_grid">;
    static controllerSection_optionSlider0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static controllerSection_optionSliderDamen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static controllerSection_optionToggle0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static controllerSection_optionToggle1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static controllerSection_optionToggle9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static controllerSection_optionToggle10<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static controllerSection_optionToggle11<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static controllerSection_gamepadSwapAb<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static controllerSection_gamepadSwapXy<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static controllerSection_gamepadCursorSensitivityOptionSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static controllerSection_optionToggle3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static controllerSection_optionToggle4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static controllerSection_optionToggle5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static controllerSection_optionGroupLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static controllerSection_gamepadKeymappingGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static controllerSection_resetButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "reset_button" | "common_touch_settings">;
    static touchSection_commonTouchSettings<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "option_slider_0" | "option_slider_damen" | "option_enable_new_touch_control_schemes_button" | "control_scheme_section" | "option_resizable_ui" | "modify_control_layout_section" | "option_show_action_button" | "option_show_block_select_button" | "option_toggle_left_handed" | "option_toggle_auto_jump" | "option_bool_sprint_on_movement" | "option_show_toggle_camera_perspective_button" | "joystick_visibility_dropdown" | "option_slider_thumbstick_opacity" | "sneak_dropdown" | "option_slider_1" | "option_toggle_destroy_vibration" | "option_toggle_split_vibration" | "option_creative_delayed_block_breaking" | "option_toggle_invert_y" | "option_always_highlight_hovering_box_in_crosshair" | "option_toggle_use_touchpad" | "option_toggle_swap_jump_and_sneak" | "hotbar_only_touch_toggle">;
    static touchSection_commonTouchSettings_optionEnableNewTouchControlSchemesButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_controlSchemeSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding_1" | "padding_0" | "padding_2" | "section_label" | "image_and_button" | "select_control_mode">;
    static touchSection_commonTouchSettings_controlSchemeSection_sectionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_controlSchemeSection_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_controlSchemeSection_imageAndButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "images" | "scheme_button_section">;
    static touchSection_commonTouchSettings_controlSchemeSection_imageAndButton_images<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "touch_image" | "crosshair_image" | "classic_image">;
    static touchSection_commonTouchSettings_controlSchemeSection_imageAndButton_images_touchImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_controlSchemeSection_imageAndButton_images_crosshairImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_controlSchemeSection_imageAndButton_images_classicImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_controlSchemeSection_imageAndButton_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_controlSchemeSection_imageAndButton_schemeButtonSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "caption">;
    static touchSection_commonTouchSettings_controlSchemeSection_imageAndButton_schemeButtonSection_caption<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "selected_label" | "selected_control">;
    static touchSection_commonTouchSettings_controlSchemeSection_imageAndButton_schemeButtonSection_caption_selectedLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_controlSchemeSection_imageAndButton_schemeButtonSection_caption_selectedControl<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_controlSchemeSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_controlSchemeSection_selectControlMode<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_controlSchemeSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_optionResizableUi<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_modifyControlLayoutSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "modify_control_layout_button" | "customize_tooltip_option">;
    static touchSection_commonTouchSettings_modifyControlLayoutSection_modifyControlLayoutButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_modifyControlLayoutSection_customizeTooltipOption<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_modifyControlLayoutSection_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_optionSlider0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_optionSliderDamen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_optionShowActionButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_optionShowBlockSelectButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_optionToggleLeftHanded<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_optionToggleAutoJump<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_optionBoolSprintOnMovement<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_optionShowToggleCameraPerspectiveButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_joystickVisibilityDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_optionSliderThumbstickOpacity<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_sneakDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_optionSlider1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_optionToggleDestroyVibration<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_optionToggleSplitVibration<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_optionCreativeDelayedBlockBreaking<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_optionToggleInvertY<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_optionAlwaysHighlightHoveringBoxInCrosshair<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_optionToggleUseTouchpad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_optionToggleSwapJumpAndSneak<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_commonTouchSettings_hotbarOnlyTouchToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static touchSection_resetButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static joystickVisibilityDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sneakDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static customizeTooltipOptionImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static customizeTooltipOptionPopup<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static customizeTooltipOption<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "customize_tooltip_option_image" | "customize_tooltip_option_popup">;
    static customizeTooltipOption_customizeTooltipOptionImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "hover_detection_input_panel">;
    static customizeTooltipOption_customizeTooltipOptionImage_hoverDetectionInputPanel<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static customizeTooltipOption_customizeTooltipOptionPopup<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class GeneralSection extends Class {
    static generalButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "link_button" | "option_toggle_fail_realms_purchase_fulfillment" | "network_label_header" | "paddingCrossPlatform" | "cross_platform_enabled_toggle" | "paddingCellularData" | "mobile_data_option_toggle" | "paddingWebSockets" | "websockets_enabled_toggle" | "websocket_encryption_toggle" | "paddingAutoUpdate" | "auto_update_mode_dropdown" | "paddingAutoUpdateToggle" | "auto_update_enabled_toggle" | "paddingGameTipsFeature" | "tutorial_toggle" | "tutorial_animation_toggle" | "tutorial_restart_button" | "paddingTrustedSkins" | "only_allow_trusted_skins_toggle" | "paddingFilterProfanity" | "filter_profanity_toggle" | "pause_label_header" | "paddingPauseFeature" | "pause_toggle" | "paddingLinkEduSupport" | "paddingDividerSustainability" | "ecomode_label_header" | "paddingEcoMode" | "ecomode_enabled_toggle" | "paddingDividerTermsCreditsAttribution" | "dividerTermsCreditsAttribution" | "paddingDividerTermsCreditsAttributionAfter" | "paddingTermsNConditions" | "terms_and_conditions_link_button" | "paddingCreditsButton" | "credits_button" | "paddingAttribution" | "attribution_link_button" | "paddingfeedback" | "feedback_link_button" | "paddingLicenses" | "dividerLicenses" | "paddingLicensesAfter" | "paddingLicensesHeader" | "licenses_label_header" | "paddingLicensedContent" | "licensed_content_link_button" | "paddingFontLicense" | "font_license_popup_button" | "third_party_copyright_info_label_panel" | "paddingSectionDividerContentLog" | "build_info_label_panel">;
    static generalTabSection_optionToggleFailRealmsPurchaseFulfillment<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_networkLabelHeader<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingCrossPlatform<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_crossPlatformEnabledToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingCellularData<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_mobileDataOptionToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingWebSockets<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_websocketsEnabledToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_websocketEncryptionToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingAutoUpdate<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_autoUpdateModeDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingAutoUpdateToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_autoUpdateEnabledToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingGameTipsFeature<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_tutorialToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_tutorialAnimationToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_tutorialRestartButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingTrustedSkins<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_onlyAllowTrustedSkinsToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingFilterProfanity<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_filterProfanityToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_generic_core">;
    static generalTabSection_filterProfanityToggle_optionGenericCore<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_pauseLabelHeader<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingPauseFeature<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_pauseToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingLinkEduSupport<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_linkButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingDividerSustainability<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_ecomodeLabelHeader<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingEcoMode<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_ecomodeEnabledToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingDividerTermsCreditsAttribution<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_dividerTermsCreditsAttribution<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "section_divider">;
    static generalTabSection_dividerTermsCreditsAttribution_sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingDividerTermsCreditsAttributionAfter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingTermsNConditions<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_termsAndConditionsLinkButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingCreditsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_creditsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingAttribution<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_attributionLinkButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingfeedback<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_feedbackLinkButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingLicenses<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_dividerLicenses<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "section_divider">;
    static generalTabSection_dividerLicenses_sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingLicensesAfter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingLicensesHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_licensesLabelHeader<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingLicensedContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_licensedContentLinkButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingFontLicense<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_fontLicensePopupButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_thirdPartyCopyrightInfoLabelPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer_0" | "spacer_1" | "copyright_label" | "copyright_icon">;
    static generalTabSection_thirdPartyCopyrightInfoLabelPanel_spacer0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_thirdPartyCopyrightInfoLabelPanel_copyrightLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_thirdPartyCopyrightInfoLabelPanel_spacer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_thirdPartyCopyrightInfoLabelPanel_copyrightIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_paddingSectionDividerContentLog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_buildInfoLabelPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "version_label" | "build_id_label" | "paddingVersionLabel" | "network_info_label" | "protocol_version_label" | "treatment_ids_label" | "build_date_label" | "world_converter_label">;
    static generalTabSection_buildInfoLabelPanel_versionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_buildInfoLabelPanel_buildIdLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_buildInfoLabelPanel_paddingVersionLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_buildInfoLabelPanel_networkInfoLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_buildInfoLabelPanel_protocolVersionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_buildInfoLabelPanel_treatmentIdsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_buildInfoLabelPanel_buildDateLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static generalTabSection_buildInfoLabelPanel_worldConverterLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewAccountErrorsButtonContent<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static switchAccountsButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padded_icon" | "padded_label">;
    static switchAccountsButtonContent_paddedIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static switchAccountsButtonContent_paddedIcon_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static switchAccountsButtonContent_paddedLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static switchAccountsButtonContent_paddedLabel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static signOutButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padded_label">;
    static signOutButtonContent_paddedLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static signOutButtonContent_paddedLabel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static switchAccountsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "name_label" | "switch_accounts" | "paddingSwitchAccounts">;
    static switchAccountsPanel_nameLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static switchAccountsPanel_paddingSwitchAccounts<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static switchAccountsPanel_switchAccounts<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static signOutPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "sign_out">;
    static signOutPanel_signOut<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static signOutFailPopup<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static signOutFailBodyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static signOutFailBodyContentStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "close_button" | "padding1" | "padding2" | "body_text_centering_panel1" | "body_text_centering_panel2" | "learn_more_button">;
    static signOutFailBodyContentStack_bodyTextCenteringPanel1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "body_text1">;
    static signOutFailBodyContentStack_bodyTextCenteringPanel1_bodyText1<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static signOutFailBodyContentStack_bodyTextCenteringPanel2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "body_text2">;
    static signOutFailBodyContentStack_bodyTextCenteringPanel2_bodyText2<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static signOutFailBodyContentStack_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static signOutFailBodyContentStack_learnMoreButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static signOutFailBodyContentStack_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static signOutFailBodyContentStack_closeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "switch_accounts" | "sign_out" | "use_edu_remember_me" | "paddingUseSSO" | "paddingNameControls" | "name_controls" | "paddingSignInControls" | "signin_controls" | "paddingGamerTagControls" | "gamertag_controls" | "paddingClearMSAToken" | "clear_msa_token" | "paddingUnlinkMSAAccount" | "unlink_msa_account" | "unlink_msa_account_nx" | "paddingDeleteAccount" | "delete_account" | "paddingUseRemoteConnect" | "remote_connect_toggle" | "paddingInfoLabels" | "device_id_label" | "MinecraftAccount_id_label">;
    static accountSection_useEduRememberMe<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountSection_paddingUseSSO<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountSection_switchAccounts<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountSection_signOut<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountSection_paddingNameControls<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountSection_nameControls<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountSection_paddingSignInControls<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountSection_signinControls<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountSection_paddingGamerTagControls<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountSection_gamertagControls<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountSection_paddingClearMSAToken<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountSection_clearMsaToken<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "clear_msa_token_button">;
    static accountSection_clearMsaToken_clearMsaTokenButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountSection_paddingUnlinkMSAAccount<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountSection_unlinkMsaAccount<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountSection_unlinkMsaAccountNx<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountSection_paddingDeleteAccount<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountSection_deleteAccount<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountSection_paddingUseRemoteConnect<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountSection_remoteConnectToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountSection_paddingInfoLabels<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountSection_deviceIdLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static accountSection_MinecraftAccountIdLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static nameControls<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "option_text_edit_control">;
    static nameControls_optionTextEditControl<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static signinControls<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "sign_in">;
    static signinControls_signIn<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "action_button">;
    static signinControls_signIn_actionButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static signinSubscription<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "sign_in">;
    static signinSubscription_signIn<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "please_signin_label">;
    static signinSubscription_signIn_pleaseSigninLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagControls<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "gamertag_label" | "sign_out" | "paddingXboxAccountButtons" | "xboxlive_deep_link_buttons" | "paddingSignOut" | "realms_invites" | "offline_token_authorization">;
    static gamertagControls_gamertagLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer" | "gamerpic" | "panel_descriptor" | "spacer_2" | "panel_gamertag">;
    static gamertagControls_gamertagLabel_panelDescriptor<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label_descriptor">;
    static gamertagControls_gamertagLabel_panelDescriptor_labelDescriptor<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagControls_gamertagLabel_spacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagControls_gamertagLabel_gamerpic<T extends Types = Types.Custom>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagControls_gamertagLabel_spacer2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagControls_gamertagLabel_panelGamertag<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gamertag_label">;
    static gamertagControls_gamertagLabel_panelGamertag_gamertagLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagControls_paddingXboxAccountButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagControls_xboxliveDeepLinkButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "link_button" | "change_gamertag_button" | "change_gamertag_button_mobile" | "manage_account_button" | "manage_account_button_mobile" | "paddingXboxSettingsPrivacyControl">;
    static gamertagControls_xboxliveDeepLinkButtons_changeGamertagButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagControls_xboxliveDeepLinkButtons_changeGamertagButtonMobile<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagControls_xboxliveDeepLinkButtons_manageAccountButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagControls_xboxliveDeepLinkButtons_manageAccountButtonMobile<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagControls_xboxliveDeepLinkButtons_paddingXboxSettingsPrivacyControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagControls_xboxliveDeepLinkButtons_linkButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagControls_paddingSignOut<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagControls_realmsInvites<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "check_realms_invites_button">;
    static gamertagControls_realmsInvites_checkRealmsInvitesButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagControls_signOut<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "action_button">;
    static gamertagControls_signOut_actionButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gamertagControls_offlineTokenAuthorization<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "request_psn_authorization_button">;
    static gamertagControls_offlineTokenAuthorization_requestPsnAuthorizationButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static autoUpdateModeDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static globalTexturePackButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static globalTexturePackSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageManagementButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageManagementSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageManagementHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static storageManagementFooter<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudStorageButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudStorageSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacing1" | "spacing2" | "spacing3" | "edu_cloud_backup_toggle" | "body_wrapper_panel" | "edu_cloud_onedrive_button" | "spacing4" | "edu_cloud_learn_more_wrapper_panel">;
    static eduCloudStorageSection_spacing1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudStorageSection_eduCloudBackupToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudStorageSection_spacing2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudStorageSection_bodyWrapperPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "edu_cloud_storage_body_label" | "tts_border">;
    static eduCloudStorageSection_bodyWrapperPanel_ttsBorder<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudStorageSection_bodyWrapperPanel_eduCloudStorageBodyLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudStorageSection_spacing3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudStorageSection_eduCloudOnedriveButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudStorageSection_spacing4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudStorageSection_eduCloudLearnMoreWrapperPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padded_icon" | "learn_more_button">;
    static eduCloudStorageSection_eduCloudLearnMoreWrapperPanel_learnMoreButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudStorageSection_eduCloudLearnMoreWrapperPanel_paddedIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static eduCloudStorageSection_eduCloudLearnMoreWrapperPanel_paddedIcon_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudOnedriveButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padded_icon" | "padded_label">;
    static eduCloudOnedriveButtonContent_paddedLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static eduCloudOnedriveButtonContent_paddedLabel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudOnedriveButtonContent_paddedIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static eduCloudOnedriveButtonContent_paddedIcon_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudOnedriveErrorPopup<T extends Types = Types.InputPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudOnedriveErrorContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding2" | "padding3" | "ok_button" | "body_text_centering_panel2" | "learn_more_button">;
    static eduCloudOnedriveErrorContent_bodyTextCenteringPanel2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "body_text2">;
    static eduCloudOnedriveErrorContent_bodyTextCenteringPanel2_bodyText2<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudOnedriveErrorContent_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudOnedriveErrorContent_learnMoreButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudOnedriveErrorContent_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudOnedriveErrorContent_okButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static creatorButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorTogglePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "editor_confirmation_panel" | "editor_toggle_spacer" | "editor_image_panel">;
    static editorTogglePanel_editorConfirmationPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "editor_active_label" | "toggle_spacer" | "editor_confirmation_section_label">;
    static editorTogglePanel_editorConfirmationPanel_editorActiveLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorTogglePanel_editorConfirmationPanel_toggleSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorTogglePanel_editorConfirmationPanel_editorConfirmationSectionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorTogglePanel_editorToggleSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorTogglePanel_editorImagePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "editor_icon">;
    static editorTogglePanel_editorImagePanel_editorIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static creatorTogglesPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "section_panel_1" | "copy_coordinate_section_stack_panel" | "creator_setting_button">;
    static creatorTogglesPanel_sectionPanel1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "section_divider">;
    static creatorTogglesPanel_sectionPanel1_sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static creatorTogglesPanel_copyCoordinateSectionStackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content_log_section_label" | "content_log_section_label_spacer" | "option_content_file_log">;
    static creatorTogglesPanel_copyCoordinateSectionStackPanel_contentLogSectionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static creatorTogglesPanel_copyCoordinateSectionStackPanel_contentLogSectionLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creatorTogglesPanel_copyCoordinateSectionStackPanel_optionContentFileLog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creatorTogglesPanel_creatorSettingButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "go_to_keybinds" | "creator_settings_section_label_spacer">;
    static creatorTogglesPanel_creatorSettingButton_goToKeybinds<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static creatorTogglesPanel_creatorSettingButton_creatorSettingsSectionLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debuggerTogglesPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "primary_panel" | "section_panel_1">;
    static debuggerTogglesPanel_sectionPanel1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "section_divider">;
    static debuggerTogglesPanel_sectionPanel1_sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static debuggerTogglesPanel_primaryPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer" | "heading" | "passcode_required_toggle" | "passcode_input" | "auto_attach_toggle" | "all_options_panel">;
    static debuggerTogglesPanel_primaryPanel_heading<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static debuggerTogglesPanel_primaryPanel_spacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debuggerTogglesPanel_primaryPanel_passcodeRequiredToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debuggerTogglesPanel_primaryPanel_passcodeInput<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debuggerTogglesPanel_primaryPanel_autoAttachToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debuggerTogglesPanel_primaryPanel_allOptionsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "attach_mode_option" | "host_and_port_panel" | "auto_attach_timeout_slider">;
    static debuggerTogglesPanel_primaryPanel_allOptionsPanel_attachModeOption<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debuggerTogglesPanel_primaryPanel_allOptionsPanel_hostAndPortPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer" | "host_input" | "port_input">;
    static debuggerTogglesPanel_primaryPanel_allOptionsPanel_hostAndPortPanel_hostInput<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debuggerTogglesPanel_primaryPanel_allOptionsPanel_hostAndPortPanel_spacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debuggerTogglesPanel_primaryPanel_allOptionsPanel_hostAndPortPanel_portInput<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debuggerTogglesPanel_primaryPanel_allOptionsPanel_autoAttachTimeoutSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static diagnosticsTogglesPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "primary_panel" | "section_panel_1">;
    static diagnosticsTogglesPanel_sectionPanel1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "section_divider">;
    static diagnosticsTogglesPanel_sectionPanel1_sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static diagnosticsTogglesPanel_primaryPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer" | "heading" | "serverbound_client_diagnostics_toggle" | "diagnostics_capture_buttons">;
    static diagnosticsTogglesPanel_primaryPanel_heading<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static diagnosticsTogglesPanel_primaryPanel_spacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static diagnosticsTogglesPanel_primaryPanel_serverboundClientDiagnosticsToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static diagnosticsTogglesPanel_primaryPanel_diagnosticsCaptureButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "clear_diagnostics_capture_files">;
    static diagnosticsTogglesPanel_primaryPanel_diagnosticsCaptureButtons_clearDiagnosticsCaptureFiles<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static watchdogTogglesPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "primary_panel" | "section_panel_1">;
    static watchdogTogglesPanel_sectionPanel1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "section_divider">;
    static watchdogTogglesPanel_sectionPanel1_sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static watchdogTogglesPanel_primaryPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer" | "heading" | "hang_threshold_slider" | "spike_warning_toggle" | "spike_threshold_slider" | "slow_warning_toggle" | "slow_threshold_slider">;
    static watchdogTogglesPanel_primaryPanel_heading<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static watchdogTogglesPanel_primaryPanel_spacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static watchdogTogglesPanel_primaryPanel_hangThresholdSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static watchdogTogglesPanel_primaryPanel_spikeWarningToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static watchdogTogglesPanel_primaryPanel_spikeThresholdSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static watchdogTogglesPanel_primaryPanel_slowWarningToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static watchdogTogglesPanel_primaryPanel_slowThresholdSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static deviceInfoTogglesPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "primary_panel" | "section_panel_1" | "device_info_memory_tier_dropdown">;
    static deviceInfoTogglesPanel_sectionPanel1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "section_divider">;
    static deviceInfoTogglesPanel_sectionPanel1_sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static deviceInfoTogglesPanel_primaryPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer" | "heading" | "device_info_memory_tier_use_override_toggle">;
    static deviceInfoTogglesPanel_primaryPanel_heading<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static deviceInfoTogglesPanel_primaryPanel_spacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static deviceInfoTogglesPanel_primaryPanel_deviceInfoMemoryTierUseOverrideToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static deviceInfoTogglesPanel_deviceInfoMemoryTierDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentMemoryTierDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentLogGuiLevelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentLogPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "section_panel_1" | "content_log_section_label" | "content_log_section_label_spacer" | "option_content_file_log" | "option_content_gui_log" | "option_content_gui_log_show_on_errors" | "option_content_log_gui_level" | "content_log_buttons" | "content_log_section_label_spacer_2" | "content_log_location_label_header" | "content_log_location_label">;
    static contentLogPanel_sectionPanel1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "section_divider">;
    static contentLogPanel_sectionPanel1_sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentLogPanel_contentLogSectionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentLogPanel_contentLogSectionLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentLogPanel_optionContentFileLog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentLogPanel_optionContentGuiLog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentLogPanel_optionContentGuiLogShowOnErrors<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentLogPanel_optionContentLogGuiLevel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentLogPanel_contentLogButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content_log_section_label_spacer" | "open_content_log_history" | "clear_content_log_files">;
    static contentLogPanel_contentLogButtons_openContentLogHistory<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentLogPanel_contentLogButtons_contentLogSectionLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentLogPanel_contentLogButtons_clearContentLogFiles<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentLogPanel_contentLogSectionLabelSpacer2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentLogPanel_contentLogLocationLabelHeader<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentLogPanel_contentLogLocationLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static creatorSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content_log_panel" | "debugger_toggles_panel" | "watchdog_toggles_panel" | "device_info_toggles_panel" | "editor_toggle" | "creator_toggles" | "diagnostics_toggle_panel">;
    static creatorSection_editorToggle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creatorSection_creatorToggles<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creatorSection_debuggerTogglesPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creatorSection_diagnosticsTogglePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creatorSection_watchdogTogglesPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creatorSection_deviceInfoTogglesPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static creatorSection_contentLogPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedVideoOptionsToggle<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSectionOreUi<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "generic_label" | "spacer_0" | "spacer_1" | "gamepad_helper_label">;
    static videoSectionOreUi_spacer0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSectionOreUi_genericLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSectionOreUi_spacer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSectionOreUi_gamepadHelperLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "field_of_view_toggle" | "reset_button" | "advanced_graphics_options_panel" | "raytracing_render_distance_slider" | "deferred_render_distance_slider" | "render_distance_slider" | "render_distance_warning_text" | "brightness_slider" | "perspective_dropdown" | "fullscreen_toggle" | "option_toggle_hidehand" | "hide_paperdoll_toggle" | "option_toggle_hidehud" | "option_toggle_screen_animations" | "hud_opacity_slider" | "splitscreen_hud_opacity_slider" | "setup_safe_zone" | "fov_slider" | "split_screen_dropdown" | "auto_save_icon_toggle" | "outline_selection_toggle" | "player_names_toggle" | "splitscreen_player_names_toggle" | "view_bobbing_toggle" | "camera_shake_toggle" | "fancy_leaves_toggle" | "fancy_bubbles_toggle" | "render_clouds_toggle" | "fancy_clouds_toggle" | "smooth_lighting_toggle" | "rendering_profile_option_slider" | "super_fancy_panel" | "ui_profile_dropdown" | "gui_scale_slider" | "gui_accessibility_scaling_toggle" | "option_toggle_improved_input_response" | "frame_pacing_toggle" | "graphics_mode_switch_toggle" | "upscaling_toggle" | "max_framerate_slider" | "msaa_slider" | "texel_anti_aliasing_toggle">;
    static videoSection_advancedGraphicsOptionsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "graphics_mode" | "graphics_quality_preset_mode_dropdown_content" | "advanced_graphics_options_button" | "advanced_graphics_options_section">;
    static videoSection_advancedGraphicsOptionsPanel_graphicsMode<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_advancedGraphicsOptionsPanel_graphicsQualityPresetModeDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_advancedGraphicsOptionsPanel_advancedGraphicsOptionsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_advancedGraphicsOptionsPanel_advancedGraphicsOptionsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_raytracingRenderDistanceSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_generic_core">;
    static videoSection_raytracingRenderDistanceSlider_optionGenericCore<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_deferredRenderDistanceSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_generic_core">;
    static videoSection_deferredRenderDistanceSlider_optionGenericCore<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_renderDistanceSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_generic_core" | "render_distance_warning">;
    static videoSection_renderDistanceSlider_renderDistanceWarning<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_renderDistanceSlider_optionGenericCore<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_renderDistanceWarningText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "render_distance_popup">;
    static videoSection_renderDistanceWarningText_renderDistancePopup<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_brightnessSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_perspectiveDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_fullscreenToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_optionToggleHidehand<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_hidePaperdollToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_optionToggleHidehud<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_optionToggleScreenAnimations<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_hudOpacitySlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_splitscreenHudOpacitySlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_setupSafeZone<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "action_button">;
    static videoSection_setupSafeZone_actionButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_fovSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_splitScreenDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_autoSaveIconToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_outlineSelectionToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_playerNamesToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_splitscreenPlayerNamesToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_viewBobbingToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_cameraShakeToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_fancyLeavesToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_fancyBubblesToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_renderCloudsToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_fancyCloudsToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_smoothLightingToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_renderingProfileOptionSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_fieldOfViewToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_superFancyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "super_fancy_section">;
    static videoSection_superFancyPanel_superFancySection<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "super_fancy_contents">;
    static videoSection_superFancyPanel_superFancySection_superFancyContents<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "atmospherics_toggle" | "edge_highlight_toggle" | "bloom_toggle" | "terrain_shadows_toggle" | "super_fancy_water_toggle">;
    static videoSection_superFancyPanel_superFancySection_superFancyContents_atmosphericsToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_superFancyPanel_superFancySection_superFancyContents_edgeHighlightToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_superFancyPanel_superFancySection_superFancyContents_bloomToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_superFancyPanel_superFancySection_superFancyContents_terrainShadowsToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_superFancyPanel_superFancySection_superFancyContents_superFancyWaterToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_uiProfileDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_guiScaleSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_generic_core">;
    static videoSection_guiScaleSlider_optionGenericCore<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_guiAccessibilityScalingToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_generic_core">;
    static videoSection_guiAccessibilityScalingToggle_optionGenericCore<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_optionToggleImprovedInputResponse<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_generic_core">;
    static videoSection_optionToggleImprovedInputResponse_optionGenericCore<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_framePacingToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_generic_core">;
    static videoSection_framePacingToggle_optionGenericCore<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_graphicsModeSwitchToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_upscalingToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_maxFramerateSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_msaaSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_texelAntiAliasingToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static videoSection_resetButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static maxFramerateSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_generic_core">;
    static maxFramerateSlider_optionGenericCore<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static msaaSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static upscalingToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_generic_core">;
    static upscalingToggle_optionGenericCore<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static renderDistanceWarningImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static renderDistanceWarning<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "render_distance_warning_image">;
    static renderDistanceWarning_renderDistanceWarningImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiProfileDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static splitScreenDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static thirdPersonDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toastNotificationDurationDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatMessageDurationDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static fileStorageLocationContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static background<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "fill" | "border">;
    static background_fill<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static background_border<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static leftButtonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static rightButtonLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad_2" | "pad_1" | "pad_0" | "right_button" | "left_button_panel">;
    static realmsButtonPanel_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsButtonPanel_leftButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "left_button" | "left_button_loading">;
    static realmsButtonPanel_leftButtonPanel_leftButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsButtonPanel_leftButtonPanel_leftButtonLoading<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsButtonPanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsButtonPanel_rightButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsButtonPanel_pad2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static consumableNotExtendable<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "panel_content">;
    static consumableNotExtendable_panelContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label_panel" | "limited_status_image" | "padded_icon_0" | "padded_icon_1">;
    static consumableNotExtendable_panelContent_paddedIcon0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static consumableNotExtendable_panelContent_limitedStatusImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static consumableNotExtendable_panelContent_paddedIcon1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static consumableNotExtendable_panelContent_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "name_label2">;
    static consumableNotExtendable_panelContent_labelPanel_nameLabel2<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static possibleStoreMismatch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "panel_content">;
    static possibleStoreMismatch_panelContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label_panel" | "limited_status_image" | "padded_icon_0" | "padded_icon_1">;
    static possibleStoreMismatch_panelContent_paddedIcon0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static possibleStoreMismatch_panelContent_limitedStatusImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static possibleStoreMismatch_panelContent_paddedIcon1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static possibleStoreMismatch_panelContent_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "name_label2">;
    static possibleStoreMismatch_panelContent_labelPanel_nameLabel2<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSubscriptionStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad" | "image_panel" | "info">;
    static realmsSubscriptionStack_imagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "0">;
    static realmsSubscriptionStack_imagePanel_0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSubscriptionStack_pad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSubscriptionStack_info<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "realm_name" | "bottom_pad" | "realms_desc_label">;
    static realmsSubscriptionStack_info_realmName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSubscriptionStack_info_realmsDescLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSubscriptionStack_info_bottomPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSubscriptionMain<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "black_background" | "realms_plus_subscription_stack">;
    static realmsSubscriptionMain_blackBackground<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSubscriptionMain_realmsPlusSubscriptionStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "realms_plus_subscription_top_stack" | "realms_plus_bottom_button_stack">;
    static realmsSubscriptionMain_realmsPlusSubscriptionStack_realmsPlusSubscriptionTopStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSubscriptionMain_realmsPlusSubscriptionStack_realmsPlusBottomButtonStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "top_pad" | "bottom_pad" | "realms_plus_bottom_button_panel">;
    static realmsSubscriptionMain_realmsPlusSubscriptionStack_realmsPlusBottomButtonStack_topPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSubscriptionMain_realmsPlusSubscriptionStack_realmsPlusBottomButtonStack_realmsPlusBottomButtonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSubscriptionMain_realmsPlusSubscriptionStack_realmsPlusBottomButtonStack_bottomPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSubscriptionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad_2" | "pad_3" | "pad_4" | "pad_1" | "top_panel" | "middle_panel" | "lower_panel" | "platform_mismatch_container">;
    static realmsSubscriptionPanel_topPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSubscriptionPanel_pad1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSubscriptionPanel_middlePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "black_background" | "renews_text">;
    static realmsSubscriptionPanel_middlePanel_blackBackground<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSubscriptionPanel_middlePanel_renewsText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSubscriptionPanel_pad2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSubscriptionPanel_lowerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "black_background" | "consumable_not_extendable">;
    static realmsSubscriptionPanel_lowerPanel_blackBackground<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSubscriptionPanel_lowerPanel_consumableNotExtendable<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSubscriptionPanel_pad3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSubscriptionPanel_platformMismatchContainer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "black_background" | "possible_store_mismatch">;
    static realmsSubscriptionPanel_platformMismatchContainer_blackBackground<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSubscriptionPanel_platformMismatchContainer_possibleStoreMismatch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsSubscriptionPanel_pad4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsPlusSubscriptionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static additionalSubscriptionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewSubscriptionsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewSubscriptionsPrereleaseSection<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "black_background" | "renews_text">;
    static viewSubscriptionsPrereleaseSection_blackBackground<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewSubscriptionsPrereleaseSection_renewsText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewSubscriptionsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad_3" | "platform_mismatch_container" | "sunsetting_label" | "failed_loading_subscriptions_label" | "loading_subscriptions_label" | "no_active_subscriptions_panel" | "realms_plus_header_my_subscriptions" | "realms_plus_subscriptions_grid" | "csb_purchased_with_cancel" | "csb_purchased_with_buy" | "csb_purchased_padding" | "csb_expiration_container" | "csb_expiration_and_platform_mismatch_padding" | "additional_realms_subscriptions_grid" | "settings_additional_subscription_offers_section">;
    static viewSubscriptionsSection_sunsettingLabel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewSubscriptionsSection_failedLoadingSubscriptionsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewSubscriptionsSection_loadingSubscriptionsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewSubscriptionsSection_noActiveSubscriptionsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background_panel" | "header_no_active_csub_or_realms_subscriptions">;
    static viewSubscriptionsSection_noActiveSubscriptionsPanel_headerNoActiveCsubOrRealmsSubscriptions<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static viewSubscriptionsSection_noActiveSubscriptionsPanel_headerNoActiveCsubOrRealmsSubscriptions_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewSubscriptionsSection_noActiveSubscriptionsPanel_backgroundPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewSubscriptionsSection_realmsPlusHeaderMySubscriptions<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static viewSubscriptionsSection_realmsPlusHeaderMySubscriptions_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewSubscriptionsSection_realmsPlusSubscriptionsGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewSubscriptionsSection_csbPurchasedWithCancel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewSubscriptionsSection_csbPurchasedWithBuy<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewSubscriptionsSection_csbPurchasedPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewSubscriptionsSection_platformMismatchContainer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "black_background" | "possible_store_mismatch">;
    static viewSubscriptionsSection_platformMismatchContainer_blackBackground<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewSubscriptionsSection_platformMismatchContainer_possibleStoreMismatch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewSubscriptionsSection_csbExpirationContainer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background_panel" | "csb_expiration_text_container">;
    static viewSubscriptionsSection_csbExpirationContainer_csbExpirationTextContainer<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "csb_expiration" | "csb_expiration_text_padding">;
    static viewSubscriptionsSection_csbExpirationContainer_csbExpirationTextContainer_csbExpirationTextPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewSubscriptionsSection_csbExpirationContainer_csbExpirationTextContainer_csbExpiration<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewSubscriptionsSection_csbExpirationContainer_backgroundPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewSubscriptionsSection_csbExpirationAndPlatformMismatchPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewSubscriptionsSection_additionalRealmsSubscriptionsGrid<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewSubscriptionsSection_settingsAdditionalSubscriptionOffersSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static viewSubscriptionsSection_pad3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static settingsAdditionalSubscriptionOffersSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "pad_0" | "active_available_divider" | "realms_plus_header_label" | "additional_realms_buy_offer" | "pad_8" | "csb_buy_panel">;
    static settingsAdditionalSubscriptionOffersSection_activeAvailableDivider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static settingsAdditionalSubscriptionOffersSection_realmsPlusHeaderLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static settingsAdditionalSubscriptionOffersSection_pad0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static settingsAdditionalSubscriptionOffersSection_additionalRealmsBuyOffer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static settingsAdditionalSubscriptionOffersSection_pad8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static settingsAdditionalSubscriptionOffersSection_csbBuyPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilityButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static toastNotificationDurationLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static toastNotificationDurationInfoLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static toastNotificationDurationInfoEduLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatMessageDurationLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static chatMessageDurationInfoLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "reset_button" | "option_slider_0" | "camera_shake_toggle" | "gui_scale_slider" | "gui_accessibility_scaling_toggle" | "option_toggle0" | "option_toggle1" | "option_toggle2" | "option_toggle3" | "hud_text_background_opacity_slider" | "chat_opacity_slider" | "actionbar_text_background_opacity_slider" | "darkness_slider" | "glint_strength_slider" | "glint_speed_slider" | "toast_notification_duration_options_panel" | "chat_message_duration_options_panel">;
    static accessibilitySection_optionToggle0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection_optionToggle1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection_optionToggle2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection_optionSlider0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection_optionToggle3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection_hudTextBackgroundOpacitySlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection_chatOpacitySlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection_actionbarTextBackgroundOpacitySlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection_cameraShakeToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection_darknessSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection_glintStrengthSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection_glintSpeedSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection_toastNotificationDurationOptionsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "toast_notification_duration_label_wrapper" | "toast_notification_duration_info_label_wrapper" | "toast_notification_duration_info_label_edu_wrapper" | "toast_notification_duration_dropdown_spacer_pre" | "toast_notification_duration_dropdown">;
    static accessibilitySection_toastNotificationDurationOptionsPanel_toastNotificationDurationLabelWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection_toastNotificationDurationOptionsPanel_toastNotificationDurationInfoLabelWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection_toastNotificationDurationOptionsPanel_toastNotificationDurationInfoLabelEduWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection_toastNotificationDurationOptionsPanel_toastNotificationDurationDropdownSpacerPre<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection_toastNotificationDurationOptionsPanel_toastNotificationDurationDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection_chatMessageDurationOptionsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "chat_message_duration_label_wrapper" | "chat_message_duration_info_label_wrapper" | "chat_message_duration_dropdown_spacer_pre" | "chat_message_duration_dropdown">;
    static accessibilitySection_chatMessageDurationOptionsPanel_chatMessageDurationLabelWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection_chatMessageDurationOptionsPanel_chatMessageDurationInfoLabelWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection_chatMessageDurationOptionsPanel_chatMessageDurationDropdownSpacerPre<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection_chatMessageDurationOptionsPanel_chatMessageDurationDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection_guiScaleSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_generic_core">;
    static accessibilitySection_guiScaleSlider_optionGenericCore<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection_guiAccessibilityScalingToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_generic_core">;
    static accessibilitySection_guiAccessibilityScalingToggle_optionGenericCore<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static accessibilitySection_resetButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSectionOreUi<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "generic_label" | "spacer_0" | "spacer_1" | "gamepad_helper_label">;
    static soundSectionOreUi_spacer0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSectionOreUi_genericLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSectionOreUi_spacer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSectionOreUi_gamepadHelperLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "reset_button" | "option_slider_0" | "option_slider_1" | "paddingMainVolume" | "paddingDividerAudioSettings" | "dividerAudioSettings" | "paddingMusic" | "paddingSound" | "option_slider_2" | "paddingAmbient" | "option_slider_3" | "paddingBlockVolume" | "option_slider_4" | "paddingHostile" | "option_slider_5" | "paddingNeutralVolume" | "option_slider_6" | "paddingPlayervolume" | "option_slider_7" | "paddingRecordVolume" | "option_slider_8" | "paddingWeatherVolume" | "option_slider_9" | "paddingTTSVolume" | "option_slider_10" | "paddingResetVolumes" | "paddingEndOfList">;
    static soundSection_paddingMainVolume<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_optionSlider0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_paddingDividerAudioSettings<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_dividerAudioSettings<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "section_divider">;
    static soundSection_dividerAudioSettings_sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_paddingMusic<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_optionSlider1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_paddingSound<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_optionSlider2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_paddingAmbient<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_optionSlider3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_paddingBlockVolume<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_optionSlider4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_paddingHostile<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_optionSlider5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_paddingNeutralVolume<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_optionSlider6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_paddingPlayervolume<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_optionSlider7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_paddingRecordVolume<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_optionSlider8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_paddingWeatherVolume<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_optionSlider9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_paddingTTSVolume<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_optionSlider10<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_paddingResetVolumes<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_resetButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static soundSection_paddingEndOfList<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static languageButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static languageGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static languageSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "language_list_grid">;
    static languageSection_languageListGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static previewButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static previewSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "generic_label" | "spacer_0" | "preview_store_launch_app1_button" | "preview_store_launch_app2_button">;
    static previewSection_spacer0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static previewSection_genericLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static previewSection_previewStoreLaunchApp1Button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static previewSection_previewStoreLaunchApp2Button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideDatePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "year_text_box" | "year_month_slash" | "month_text_box" | "month_day_slash" | "day_text_box" | "day_hour_slash" | "hour_text_box" | "hour_minute_slash" | "minute_text_box">;
    static overrideDatePanel_yearTextBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideDatePanel_yearMonthSlash<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideDatePanel_monthTextBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideDatePanel_monthDaySlash<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideDatePanel_dayTextBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideDatePanel_dayHourSlash<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideDatePanel_hourTextBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideDatePanel_hourMinuteSlash<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideDatePanel_minuteTextBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static timezonetypeDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dateOptionsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding0" | "display_override_datetime_option_toggle" | "option_toggle_date_override" | "override_date_options_panel">;
    static dateOptionsPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dateOptionsPanel_displayOverrideDatetimeOptionToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dateOptionsPanel_optionToggleDateOverride<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dateOptionsPanel_overrideDateOptionsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideDateOptionsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "override_date_options_background_panel">;
    static overrideDateOptionsPanel_overrideDateOptionsBackgroundPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding1" | "padding2" | "override_date_panel" | "load_override_date_option_toggle" | "select_dropdown" | "override_time_scale_option" | "reset_time_button">;
    static overrideDateOptionsPanel_overrideDateOptionsBackgroundPanel_loadOverrideDateOptionToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideDateOptionsPanel_overrideDateOptionsBackgroundPanel_selectDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideDateOptionsPanel_overrideDateOptionsBackgroundPanel_overrideDatePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideDateOptionsPanel_overrideDateOptionsBackgroundPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideDateOptionsPanel_overrideDateOptionsBackgroundPanel_overrideTimeScaleOption<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideDateOptionsPanel_overrideDateOptionsBackgroundPanel_resetTimeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideDateOptionsPanel_overrideDateOptionsBackgroundPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugDisplayLoggedErrorPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "debug_display_logged_error_panel_background">;
    static debugDisplayLoggedErrorPanel_debugDisplayLoggedErrorPanelBackground<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer_0" | "option_dev_show_display_logged_error_marketplace" | "option_dev_show_display_logged_error_ui" | "option_dev_show_display_logged_error_osi" | "option_dev_show_display_logged_error_other">;
    static debugDisplayLoggedErrorPanel_debugDisplayLoggedErrorPanelBackground_optionDevShowDisplayLoggedErrorMarketplace<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugDisplayLoggedErrorPanel_debugDisplayLoggedErrorPanelBackground_optionDevShowDisplayLoggedErrorUi<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugDisplayLoggedErrorPanel_debugDisplayLoggedErrorPanelBackground_optionDevShowDisplayLoggedErrorOsi<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugDisplayLoggedErrorPanel_debugDisplayLoggedErrorPanelBackground_optionDevShowDisplayLoggedErrorOther<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugDisplayLoggedErrorPanel_debugDisplayLoggedErrorPanelBackground_spacer0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xboxSandboxPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding0" | "display_override_xbox_sandbox_toggle_windows" | "display_override_xbox_sandbox_toggle" | "override_xbox_options_panel">;
    static xboxSandboxPanel_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xboxSandboxPanel_displayOverrideXboxSandboxToggleWindows<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xboxSandboxPanel_displayOverrideXboxSandboxToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xboxSandboxPanel_overrideXboxOptionsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideXboxOptionsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "override_xbox_options">;
    static overrideXboxOptionsPanel_overrideXboxOptions<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "option_dropdown_xbox">;
    static overrideXboxOptionsPanel_overrideXboxOptions_optionDropdownXbox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideVersionOptionsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "override_version_panel" | "override_version_button_panel" | "override_date_panel_bottom_padding">;
    static overrideVersionOptionsPanel_overrideVersionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideVersionOptionsPanel_overrideVersionButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "update_override_version_button">;
    static overrideVersionOptionsPanel_overrideVersionButtonPanel_updateOverrideVersionButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideVersionOptionsPanel_overrideDatePanelBottomPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideVersionPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "major_version_text_box" | "first_dot" | "minor_version_text_box" | "second_dot" | "patch_version_text_box">;
    static overrideVersionPanel_majorVersionTextBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideVersionPanel_firstDot<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideVersionPanel_minorVersionTextBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideVersionPanel_secondDot<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static overrideVersionPanel_patchVersionTextBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dotLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideTreatmentsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "override_treatments_panel_background">;
    static debugOverrideTreatmentsPanel_overrideTreatmentsPanelBackground<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer_0" | "spacer_1" | "option_toggle_treatment_override" | "override_treatment_options_panel" | "treatments_label_panel" | "progress_spinner_1" | "treatment_grid" | "unused_treatments_label_panel" | "progress_spinner_2" | "unused_treatment_grid">;
    static debugOverrideTreatmentsPanel_overrideTreatmentsPanelBackground_optionToggleTreatmentOverride<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideTreatmentsPanel_overrideTreatmentsPanelBackground_spacer0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideTreatmentsPanel_overrideTreatmentsPanelBackground_overrideTreatmentOptionsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "apply_treatments_button" | "add_treatments_panel" | "treatment_cache_management_panel">;
    static debugOverrideTreatmentsPanel_overrideTreatmentsPanelBackground_overrideTreatmentOptionsPanel_applyTreatmentsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideTreatmentsPanel_overrideTreatmentsPanelBackground_overrideTreatmentOptionsPanel_addTreatmentsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "text_edit_treatment" | "add_button_panel">;
    static debugOverrideTreatmentsPanel_overrideTreatmentsPanelBackground_overrideTreatmentOptionsPanel_addTreatmentsPanel_textEditTreatment<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideTreatmentsPanel_overrideTreatmentsPanelBackground_overrideTreatmentOptionsPanel_addTreatmentsPanel_addButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "add_button">;
    static debugOverrideTreatmentsPanel_overrideTreatmentsPanelBackground_overrideTreatmentOptionsPanel_addTreatmentsPanel_addButtonPanel_addButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideTreatmentsPanel_overrideTreatmentsPanelBackground_overrideTreatmentOptionsPanel_treatmentCacheManagementPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "reset_to_default" | "clear_treatments">;
    static debugOverrideTreatmentsPanel_overrideTreatmentsPanelBackground_overrideTreatmentOptionsPanel_treatmentCacheManagementPanel_resetToDefault<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideTreatmentsPanel_overrideTreatmentsPanelBackground_overrideTreatmentOptionsPanel_treatmentCacheManagementPanel_clearTreatments<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideTreatmentsPanel_overrideTreatmentsPanelBackground_treatmentsLabelPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "treatments_label">;
    static debugOverrideTreatmentsPanel_overrideTreatmentsPanelBackground_treatmentsLabelPanel_treatmentsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideTreatmentsPanel_overrideTreatmentsPanelBackground_progressSpinner1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_spinner_1">;
    static debugOverrideTreatmentsPanel_overrideTreatmentsPanelBackground_progressSpinner1_progressLoadingSpinner1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideTreatmentsPanel_overrideTreatmentsPanelBackground_treatmentGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideTreatmentsPanel_overrideTreatmentsPanelBackground_unusedTreatmentsLabelPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "treatments_label">;
    static debugOverrideTreatmentsPanel_overrideTreatmentsPanelBackground_unusedTreatmentsLabelPanel_treatmentsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideTreatmentsPanel_overrideTreatmentsPanelBackground_progressSpinner2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_spinner_2">;
    static debugOverrideTreatmentsPanel_overrideTreatmentsPanelBackground_progressSpinner2_progressLoadingSpinner2<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideTreatmentsPanel_overrideTreatmentsPanelBackground_unusedTreatmentGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideTreatmentsPanel_overrideTreatmentsPanelBackground_spacer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideConfigurationsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "override_configurations_panel_background">;
    static debugOverrideConfigurationsPanel_overrideConfigurationsPanelBackground<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer_0" | "option_toggle_configuration_override" | "override_configuration_options_panel" | "configuration_grid">;
    static debugOverrideConfigurationsPanel_overrideConfigurationsPanelBackground_optionToggleConfigurationOverride<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideConfigurationsPanel_overrideConfigurationsPanelBackground_spacer0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideConfigurationsPanel_overrideConfigurationsPanelBackground_overrideConfigurationOptionsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "add_configurations_panel" | "configuration_cache_management_panel">;
    static debugOverrideConfigurationsPanel_overrideConfigurationsPanelBackground_overrideConfigurationOptionsPanel_addConfigurationsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "add_button_panel" | "text_edit_configuration">;
    static debugOverrideConfigurationsPanel_overrideConfigurationsPanelBackground_overrideConfigurationOptionsPanel_addConfigurationsPanel_textEditConfiguration<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideConfigurationsPanel_overrideConfigurationsPanelBackground_overrideConfigurationOptionsPanel_addConfigurationsPanel_addButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "add_button">;
    static debugOverrideConfigurationsPanel_overrideConfigurationsPanelBackground_overrideConfigurationOptionsPanel_addConfigurationsPanel_addButtonPanel_addButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideConfigurationsPanel_overrideConfigurationsPanelBackground_overrideConfigurationOptionsPanel_configurationCacheManagementPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "reset_to_default" | "clear_configurations">;
    static debugOverrideConfigurationsPanel_overrideConfigurationsPanelBackground_overrideConfigurationOptionsPanel_configurationCacheManagementPanel_resetToDefault<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideConfigurationsPanel_overrideConfigurationsPanelBackground_overrideConfigurationOptionsPanel_configurationCacheManagementPanel_clearConfigurations<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideConfigurationsPanel_overrideConfigurationsPanelBackground_configurationGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideRealmsFeaturesPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "override_realms_features_panel_background">;
    static debugOverrideRealmsFeaturesPanel_overrideRealmsFeaturesPanelBackground<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer_0" | "option_toggle_realms_feature_override" | "override_realms_features_options_panel" | "current_realms_features_label_panel" | "realms_features_grid" | "unused_realms_features_label_panel" | "unused_realms_features_grid">;
    static debugOverrideRealmsFeaturesPanel_overrideRealmsFeaturesPanelBackground_optionToggleRealmsFeatureOverride<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideRealmsFeaturesPanel_overrideRealmsFeaturesPanelBackground_spacer0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideRealmsFeaturesPanel_overrideRealmsFeaturesPanelBackground_overrideRealmsFeaturesOptionsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "add_realms_features_panel" | "realms_feature_cache_management_panel">;
    static debugOverrideRealmsFeaturesPanel_overrideRealmsFeaturesPanelBackground_overrideRealmsFeaturesOptionsPanel_addRealmsFeaturesPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "add_button_panel" | "text_edit_realms_features">;
    static debugOverrideRealmsFeaturesPanel_overrideRealmsFeaturesPanelBackground_overrideRealmsFeaturesOptionsPanel_addRealmsFeaturesPanel_textEditRealmsFeatures<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideRealmsFeaturesPanel_overrideRealmsFeaturesPanelBackground_overrideRealmsFeaturesOptionsPanel_addRealmsFeaturesPanel_addButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "add_button">;
    static debugOverrideRealmsFeaturesPanel_overrideRealmsFeaturesPanelBackground_overrideRealmsFeaturesOptionsPanel_addRealmsFeaturesPanel_addButtonPanel_addButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideRealmsFeaturesPanel_overrideRealmsFeaturesPanelBackground_overrideRealmsFeaturesOptionsPanel_realmsFeatureCacheManagementPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "reset_to_default" | "clear_realms_features">;
    static debugOverrideRealmsFeaturesPanel_overrideRealmsFeaturesPanelBackground_overrideRealmsFeaturesOptionsPanel_realmsFeatureCacheManagementPanel_resetToDefault<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideRealmsFeaturesPanel_overrideRealmsFeaturesPanelBackground_overrideRealmsFeaturesOptionsPanel_realmsFeatureCacheManagementPanel_clearRealmsFeatures<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideRealmsFeaturesPanel_overrideRealmsFeaturesPanelBackground_currentRealmsFeaturesLabelPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "realms_features_label">;
    static debugOverrideRealmsFeaturesPanel_overrideRealmsFeaturesPanelBackground_currentRealmsFeaturesLabelPanel_realmsFeaturesLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideRealmsFeaturesPanel_overrideRealmsFeaturesPanelBackground_realmsFeaturesGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideRealmsFeaturesPanel_overrideRealmsFeaturesPanelBackground_unusedRealmsFeaturesLabelPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "realms_features_label">;
    static debugOverrideRealmsFeaturesPanel_overrideRealmsFeaturesPanelBackground_unusedRealmsFeaturesLabelPanel_realmsFeaturesLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugOverrideRealmsFeaturesPanel_overrideRealmsFeaturesPanelBackground_unusedRealmsFeaturesGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static configurationGridItem<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "remove_button" | "configuration_id_panel">;
    static configurationGridItem_configurationIdPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "configuration_id">;
    static configurationGridItem_configurationIdPanel_configurationId<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static configurationGridItem_removeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static removeConfigurationIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsFeatureGridItem<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "realms_feature_id_panel" | "disable_button">;
    static realmsFeatureGridItem_realmsFeatureIdPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "realms_feature_id">;
    static realmsFeatureGridItem_realmsFeatureIdPanel_realmsFeatureId<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsFeatureGridItem_disableButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static disableRealmsFeatureIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static unusedRealmsFeatureGridItem<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "unused_realms_feature_id_panel" | "enable_button">;
    static unusedRealmsFeatureGridItem_unusedRealmsFeatureIdPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "unused_realms_feature_id">;
    static unusedRealmsFeatureGridItem_unusedRealmsFeatureIdPanel_unusedRealmsFeatureId<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static unusedRealmsFeatureGridItem_enableButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static enableRealmsFeatureIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static treatmentGridItem<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "remove_button" | "treatment_id_panel">;
    static treatmentGridItem_treatmentIdPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "treatment_id">;
    static treatmentGridItem_treatmentIdPanel_treatmentId<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static treatmentGridItem_removeButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static removeTreatmentIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static unusedTreatmentGridItem<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "add_button" | "unused_treatment_id_panel">;
    static unusedTreatmentGridItem_unusedTreatmentIdPanel<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "unused_treatment_id">;
    static unusedTreatmentGridItem_unusedTreatmentIdPanel_unusedTreatmentId<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static unusedTreatmentGridItem_addButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static addTreatmentIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSelectWindowsStorePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "select_store_dropdown" | "stores_label" | "sandbox_label">;
    static debugSelectWindowsStorePanel_selectStoreDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSelectWindowsStorePanel_storesLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSelectWindowsStorePanel_sandboxLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static windowsStoreDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mockHttpPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "display_mock_http_panel_toggle" | "mock_http_panel_content">;
    static mockHttpPanel_displayMockHttpPanelToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mockHttpPanel_mockHttpPanelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mockHttpPanelContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "mock_http_panel_background">;
    static mockHttpPanelContent_mockHttpPanelBackground<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "divider" | "add_mock_rules_button" | "remove_all_mock_rules_button" | "active_rules_label" | "rule_list">;
    static mockHttpPanelContent_mockHttpPanelBackground_addMockRulesButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mockHttpPanelContent_mockHttpPanelBackground_removeAllMockRulesButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static mockHttpPanelContent_mockHttpPanelBackground_activeRulesLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mockHttpPanelContent_mockHttpPanelBackground_ruleList<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mockHttpPanelContent_mockHttpPanelBackground_divider<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mockHttpRuleList<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static mockHttpRule<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "rule_details_label" | "rule_spacer">;
    static mockHttpRule_ruleDetailsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static mockHttpRule_ruleSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automationButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automationSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "automation_run_entire_server_test_group" | "automation_tab_label" | "automation_test_asset_sas_text_box" | "automation_functional_test_tags_text_box" | "automation_server_test_tags_text_box" | "automation_unit_test_tags_text_box" | "automation_broken_functional_test_tags_text_box" | "automation_broken_server_test_tags_text_box" | "automation_broken_unit_test_tags_text_box" | "automation_repeat_count_text_box" | "automation_soak_test_duration_minutes_text_box" | "automation_repeat_failures_only_toggle" | "automation_testbuild_id_text_box" | "automation_functional_test_block_input_toggle" | "automation_server_test_assert_on_level_diff_toggle">;
    static automationSection_automationTabLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static automationSection_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automationSection_automationTestAssetSasTextBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automationSection_automationFunctionalTestTagsTextBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automationSection_automationServerTestTagsTextBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automationSection_automationUnitTestTagsTextBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automationSection_automationBrokenFunctionalTestTagsTextBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automationSection_automationBrokenServerTestTagsTextBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automationSection_automationBrokenUnitTestTagsTextBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automationSection_automationRepeatCountTextBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automationSection_automationSoakTestDurationMinutesTextBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automationSection_automationRepeatFailuresOnlyToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automationSection_automationRunEntireServerTestGroup<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automationSection_automationTestbuildIdTextBox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automationSection_automationFunctionalTestBlockInputToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static automationSection_automationServerTestAssertOnLevelDiffToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static discoveryDebugButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static discoveryDebugSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "option_discovery_environment" | "debug_override_discovery_panel">;
    static discoveryDebugSection_optionDiscoveryEnvironment<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static discoveryDebugSection_debugOverrideDiscoveryPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "override_discovery_panel_background">;
    static discoveryDebugSection_debugOverrideDiscoveryPanel_overrideDiscoveryPanelBackground<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer_0" | "option_toggle_discovery_override" | "override_discovery_options_panel">;
    static discoveryDebugSection_debugOverrideDiscoveryPanel_overrideDiscoveryPanelBackground_optionToggleDiscoveryOverride<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static discoveryDebugSection_debugOverrideDiscoveryPanel_overrideDiscoveryPanelBackground_spacer0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static discoveryDebugSection_debugOverrideDiscoveryPanel_overrideDiscoveryPanelBackground_overrideDiscoveryOptionsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer_1" | "spacer_2" | "text_edit_discovery_override_service_name" | "service_override_type" | "text_edit_discovery_override_service_branch" | "text_edit_discovery_override_service_custom" | "service_override_management_panel" | "active_service_overrides_label" | "reset_all_endpoint_overrides_button">;
    static discoveryDebugSection_debugOverrideDiscoveryPanel_overrideDiscoveryPanelBackground_overrideDiscoveryOptionsPanel_textEditDiscoveryOverrideServiceName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static discoveryDebugSection_debugOverrideDiscoveryPanel_overrideDiscoveryPanelBackground_overrideDiscoveryOptionsPanel_serviceOverrideType<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static discoveryDebugSection_debugOverrideDiscoveryPanel_overrideDiscoveryPanelBackground_overrideDiscoveryOptionsPanel_textEditDiscoveryOverrideServiceBranch<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static discoveryDebugSection_debugOverrideDiscoveryPanel_overrideDiscoveryPanelBackground_overrideDiscoveryOptionsPanel_textEditDiscoveryOverrideServiceCustom<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static discoveryDebugSection_debugOverrideDiscoveryPanel_overrideDiscoveryPanelBackground_overrideDiscoveryOptionsPanel_serviceOverrideManagementPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "reset_endpoint_override" | "apply_endpoint_override">;
    static discoveryDebugSection_debugOverrideDiscoveryPanel_overrideDiscoveryPanelBackground_overrideDiscoveryOptionsPanel_serviceOverrideManagementPanel_resetEndpointOverride<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static discoveryDebugSection_debugOverrideDiscoveryPanel_overrideDiscoveryPanelBackground_overrideDiscoveryOptionsPanel_serviceOverrideManagementPanel_applyEndpointOverride<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static discoveryDebugSection_debugOverrideDiscoveryPanel_overrideDiscoveryPanelBackground_overrideDiscoveryOptionsPanel_spacer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static discoveryDebugSection_debugOverrideDiscoveryPanel_overrideDiscoveryPanelBackground_overrideDiscoveryOptionsPanel_activeServiceOverridesLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static discoveryDebugSection_debugOverrideDiscoveryPanel_overrideDiscoveryPanelBackground_overrideDiscoveryOptionsPanel_spacer2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static discoveryDebugSection_debugOverrideDiscoveryPanel_overrideDiscoveryPanelBackground_overrideDiscoveryOptionsPanel_resetAllEndpointOverridesButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static featureToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "dev_add_http_delay_seconds" | "padding1" | "option_slider_0" | "option_toggle_3" | "option_toggle_4" | "option_toggle_5" | "xbox_sandbox_panel" | "mock_http_panel" | "options_for_qa_convenience" | "options_for_qa_convenience_spacer" | "option_toggle_dev_console_button_0" | "option_toggle_assertions_debug_break" | "option_toggle_assertions_show_dialog" | "option_dev_show_display_logged_error" | "display_logged_error_panel" | "option_dev_force_trial_mode" | "option_dev_force_trial_mode_spacer" | "debug_overlay_pages_label" | "debug_overlay_button_panel" | "pre_feature_toggles_label_spacer" | "feature_toggles_label" | "feature_toggles_label_spacer" | "feature_toggles" | "end_of_feature_toggles_label_spacer" | "option_toggle_dev_disable_lan_signaling" | "option_dropdown_nethernet_logging_verbosity" | "option_dropdown_http_logging_verbosity" | "option_dropdown_xsapi_logging_verbosity" | "option_toggle_remote_imgui" | "option_dropdown_0" | "option_toggle_extra_debug_hud_info" | "option_toggle_0_1" | "option_toggle_0_2" | "option_toggle_6" | "option_dropdown_server_chunk_map" | "option_toggle_9" | "option_toggle_disable_render_terrain" | "option_toggle_disable_render_entities" | "option_toggle_disable_render_blockentities" | "option_toggle_disable_render_particles" | "option_toggle_disable_render_sky" | "option_toggle_disable_render_weather" | "option_toggle_disable_render_hud" | "option_toggle_disable_render_item_in_hand" | "option_toggle_disable_render_main_menu_cubemap" | "option_toggle_disable_render_main_menu_paperdoll_animation" | "leak_memory" | "log_area" | "log_priority" | "option_toggle_build_info" | "option_perf_turtle" | "option_default_profiling_option" | "option_toggle_7" | "option_toggle_8" | "option_toggle_game_tip" | "option_toggle_10" | "dev_disable_client_blob_cache_toggle" | "dev_force_client_blob_cache_toggle" | "devquality_dropdown" | "dev_show_latency_graph_toggle" | "multithreaded_rendering_toggle" | "filewatcher_rendering_toggle" | "enable_texture_hot_reloader_toggle" | "vsync_dropdown" | "sunsetting_use_overrides_toggle" | "padding_sunsetting" | "sunseting_state_toggle" | "sunsetting_tier_dropdown" | "padding_sunsetting_2" | "copy_internal_settings_folder_to_external" | "padding_reset_day_one" | "reset_new_player_flow" | "reset_day_one_experience" | "option_text_edit_1" | "option_text_edit_2" | "option_text_edit_3" | "reset_report_timer_option" | "reset_online_safety_option" | "reset_ip_safety_option" | "reset_cloud_upload_option" | "padding_graphics_options" | "option_shadersdk_service_ip" | "option_shadersdk_service_port" | "option_shadersdk_target_port" | "padding_graphics_buttons" | "trigger_graphics_device_loss" | "allocate_texture_handles" | "padding_deferred_debug" | "deferred_platform_override">;
    static debugSection_optionsForQaConvenience<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionsForQaConvenienceSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggleDevConsoleButton0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggleAssertionsDebugBreak<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggleAssertionsShowDialog<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionDevShowDisplayLoggedError<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_displayLoggedErrorPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionDevForceTrialMode<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionDevForceTrialModeSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_debugOverlayPagesLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_debugOverlayButtonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "debug_overlay_previous_button" | "debug_overlay_next_button">;
    static debugSection_debugOverlayButtonPanel_debugOverlayPreviousButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_debugOverlayButtonPanel_debugOverlayNextButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_preFeatureTogglesLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_featureTogglesLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_featureTogglesLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_featureToggles<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_endOfFeatureTogglesLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggleDevDisableLanSignaling<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionDropdownNethernetLoggingVerbosity<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionDropdownHttpLoggingVerbosity<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionDropdownXsapiLoggingVerbosity<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggleRemoteImgui<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionDropdown0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggleExtraDebugHudInfo<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggle01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggle02<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionSlider0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggle3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggle4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggle5<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggle6<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionDropdownServerChunkMap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggle9<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggleDisableRenderTerrain<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggleDisableRenderEntities<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggleDisableRenderBlockentities<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggleDisableRenderParticles<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggleDisableRenderSky<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggleDisableRenderWeather<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggleDisableRenderHud<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggleDisableRenderItemInHand<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggleDisableRenderMainMenuCubemap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggleDisableRenderMainMenuPaperdollAnimation<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_leakMemory<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_logArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_logPriority<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggleBuildInfo<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionPerfTurtle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionDefaultProfilingOption<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggle7<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggle8<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggleGameTip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionToggle10<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_devDisableClientBlobCacheToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_devForceClientBlobCacheToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_devqualityDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_devAddHttpDelaySeconds<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_devShowLatencyGraphToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_xboxSandboxPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_multithreadedRenderingToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_filewatcherRenderingToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_enableTextureHotReloaderToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_mockHttpPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_vsyncDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_sunsettingUseOverridesToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_paddingSunsetting<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_sunsetingStateToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_sunsettingTierDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_paddingSunsetting2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_copyInternalSettingsFolderToExternal<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_paddingResetDayOne<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_resetNewPlayerFlow<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_resetDayOneExperience<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionTextEdit1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionTextEdit2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionTextEdit3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_resetReportTimerOption<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_resetOnlineSafetyOption<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_resetIpSafetyOption<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_resetCloudUploadOption<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_paddingGraphicsOptions<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionShadersdkServiceIp<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionShadersdkServicePort<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_optionShadersdkTargetPort<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_paddingGraphicsButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_triggerGraphicsDeviceLoss<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_allocateTextureHandles<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_paddingDeferredDebug<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_deferredPlatformOverride<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsDebugButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsDebugSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "feature_toggles_label" | "feature_toggles_label_spacer" | "feature_toggles" | "end_of_feature_toggles_label_spacer" | "realms_menu_title" | "realms_title_spacer" | "realms_dev_toggles_title" | "realms_dev_toggle_spacer" | "realms_without_purchase_toggle" | "realms_debug_options_title" | "realms_debug_options_spacer" | "option_dropdown_1" | "option_dropdown_2" | "option_text_edit_0" | "realms_features_override_panel" | "realms_debug_options_spacer_2">;
    static realmsDebugSection_realmsMenuTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsDebugSection_realmsTitleSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsDebugSection_featureTogglesLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsDebugSection_featureTogglesLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsDebugSection_featureToggles<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsDebugSection_endOfFeatureTogglesLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsDebugSection_realmsDevTogglesTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsDebugSection_realmsDevToggleSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsDebugSection_realmsWithoutPurchaseToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsDebugSection_realmsDebugOptionsTitle<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsDebugSection_realmsDebugOptionsSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsDebugSection_optionDropdown1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsDebugSection_optionDropdown2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsDebugSection_optionTextEdit0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsDebugSection_realmsFeaturesOverridePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "option_toggle_realms_features_override" | "override_realms_features_panel">;
    static realmsDebugSection_realmsFeaturesOverridePanel_optionToggleRealmsFeaturesOverride<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsDebugSection_realmsFeaturesOverridePanel_overrideRealmsFeaturesPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsDebugSection_realmsDebugOptionsSpacer2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmsFeatureToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "playfab_token_refresh_threshold" | "padding2" | "padding3" | "date_options_panel" | "marketplace_feature_toggles_label" | "marketplace_feature_toggles_label_spacer" | "marketplace_feature_toggles" | "option_dropdown_skin_rotation_speed" | "option_toggle_all_skins_rotate" | "option_toggle_display_marketplace_document_id" | "option_toggle_display_platform_offer_check" | "version_options_panel" | "select_windows_store_panel" | "option_clear_store_cache_button" | "option_clear_all_cache_button" | "option_delete_all_personas_button" | "option_delete_legacy_personas_button" | "enable_coin_debug_switch_toggle" | "add_500_coins" | "add_100000_coins" | "reset_entitlements" | "reset_wallet">;
    static marketplaceDebugSection_marketplaceFeatureTogglesLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugSection_marketplaceFeatureTogglesLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugSection_marketplaceFeatureToggles<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugSection_playfabTokenRefreshThreshold<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugSection_optionDropdownSkinRotationSpeed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugSection_optionToggleAllSkinsRotate<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugSection_optionToggleDisplayMarketplaceDocumentId<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugSection_optionToggleDisplayPlatformOfferCheck<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugSection_versionOptionsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "override_version_options_panel" | "option_version_override">;
    static marketplaceDebugSection_versionOptionsPanel_optionVersionOverride<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugSection_versionOptionsPanel_overrideVersionOptionsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugSection_selectWindowsStorePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugSection_dateOptionsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugSection_optionClearStoreCacheButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugSection_optionClearAllCacheButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugSection_optionDeleteAllPersonasButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugSection_optionDeleteLegacyPersonasButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugSection_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugSection_enableCoinDebugSwitchToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugSection_add500Coins<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugSection_add100000Coins<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugSection_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugSection_resetEntitlements<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceDebugSection_resetWallet<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static marketplaceFeatureToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringsDebugButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringsDebugSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer_1" | "spacer_4" | "spacer_2" | "refresh_gatherings_button" | "clear_system_service_pack_cache_button" | "active_gathering_label" | "spacer_3" | "text_edit_filter_gatherings" | "available_gatherings_section">;
    static gatheringsDebugSection_refreshGatheringsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringsDebugSection_spacer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringsDebugSection_clearSystemServicePackCacheButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringsDebugSection_spacer2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringsDebugSection_activeGatheringLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringsDebugSection_spacer3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringsDebugSection_textEditFilterGatherings<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringsDebugSection_spacer4<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringsDebugSection_availableGatheringsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringGridItemContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "gathering_uuid" | "gathering_name">;
    static gatheringGridItemContent_gatheringName<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringGridItemContent_gatheringUuid<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static gatheringItemTemplate<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "gathering_item_button">;
    static gatheringItemTemplate_gatheringItemButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static availableGatheringsGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static availableGatheringsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacing_gap" | "available_label" | "gatherings_grid">;
    static availableGatheringsPanel_availableLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static availableGatheringsPanel_gatheringsGrid<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static availableGatheringsPanel_spacingGap<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static availableGatheringsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "available_gatherings_panel">;
    static availableGatheringsSection_availableGatheringsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiFeatureToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduDebugButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduFeatureToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newCreateWorldGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newEduCreateWorldScreenGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newPlayScreenGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newEditWorldScreenGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newPlayerPermissionsScreenGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newSendInvitesScreenGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newDeathGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newBedGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static oreUiGameplayUiGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static newSettingsScreenGridItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "ui_feature_toggles_label" | "ui_feature_toggles_info_label" | "ui_feature_toggles_label_spacer" | "ui_feature_toggles" | "end_of_ui_feature_toggles_label_divider" | "end_of_ui_feature_toggles_label_divider_spacer" | "end_of_ui_feature_toggles_label_spacer" | "screen_override_label" | "screen_override_info_label" | "screen_override_label_spacer" | "new_edu_create_world_screen_radio_label" | "new_edu_create_world_screen_radio_label_spacer" | "new_edu_create_world_screen_radio_button" | "new_edu_create_world_screen_radio_button_spacer" | "new_play_screen_radio_label" | "new_play_screen_radio_label_spacer" | "new_play_screen_radio_button" | "new_play_screen_radio_button_spacer" | "new_edit_world_screen_radio_label" | "new_edit_world_screen_radio_label_spacer" | "new_edit_world_screen_radio_button" | "new_edit_world_screen_radio_button_spacer" | "new_player_permissions_radio_label" | "new_player_permissions_screen_radio_label_spacer" | "new_player_permissions_screen_radio_button" | "new_player_permissions_screen_radio_button_spacer" | "new_send_invites_radio_label" | "new_send_invites_screen_radio_label_spacer" | "new_send_invites_screen_radio_button" | "new_send_invites_screen_radio_button_spacer" | "new_death_screen_radio_label" | "new_death_screen_radio_label_spacer" | "new_death_screen_radio_button" | "new_death_screen_radio_button_spacer" | "new_bed_screen_radio_label" | "new_bed_screen_radio_label_spacer" | "new_bed_screen_radio_button" | "new_bed_screen_radio_button_spacer" | "ore_ui_gameplay_ui_radio_label" | "ore_ui_gameplay_ui_radio_label_spacer" | "ore_ui_gameplay_ui_radio_button" | "ore_ui_gameplay_ui_radio_button_spacer" | "end_of_ui_screen_override_divider" | "end_of_ui_sceen_override_divider_spacer" | "new_settings_screen_radio_label" | "new_settings_screen_radio_label_spacer" | "new_settings_screen_radio_button" | "new_settings_screen_radio_button_spacer" | "screen_opt_in_options_label" | "screen_opt_in_info_label" | "screen_opt_in_options_label_spacer" | "end_of_ui_screen_opt_in_divider" | "end_of_ui_sceen_opt_in_divider_spacer" | "other_ui_options_label" | "other_ui_options_label_spacer" | "option_toggle_default_font_override" | "option_toggle_dev_show_tcui_replacement" | "option_toggle_use_mobile_data_blocked_modal" | "ui_feature_toggles_spacer" | "option_show_touch_control_selection_screen" | "option_reset_on_start" | "option_slider_drag_dwell" | "option_slider_stack_splitting" | "reset_render_distance_warning_modal_label" | "reset_render_distance_warning_modal_label_spacer" | "reset_render_distance_warning_modal" | "reset_render_distance_warning_modal_spacer" | "ore_ui_developer_pages_divider" | "ore_ui_developer_pages_spacer" | "open_ore_ui_label" | "open_ore_ui_label_spacer" | "open_ore_ui_docs" | "open_ore_ui_tests" | "open_ore_ui_perf" | "open_ore_ui_test_modal" | "open_ore_ui_tests_spacer">;
    static uiDebugSection_uiFeatureTogglesLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_uiFeatureTogglesInfoLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_uiFeatureTogglesLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_uiFeatureToggles<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_endOfUiFeatureTogglesLabelDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "section_divider">;
    static uiDebugSection_endOfUiFeatureTogglesLabelDivider_sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_endOfUiFeatureTogglesLabelDividerSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_endOfUiFeatureTogglesLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_screenOverrideLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_screenOverrideInfoLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_screenOverrideLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newEduCreateWorldScreenRadioLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newEduCreateWorldScreenRadioLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newEduCreateWorldScreenRadioButton<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newEduCreateWorldScreenRadioButtonSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newPlayScreenRadioLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newPlayScreenRadioLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newPlayScreenRadioButton<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newPlayScreenRadioButtonSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newEditWorldScreenRadioLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newEditWorldScreenRadioLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newEditWorldScreenRadioButton<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newEditWorldScreenRadioButtonSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newPlayerPermissionsRadioLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newPlayerPermissionsScreenRadioLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newPlayerPermissionsScreenRadioButton<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newPlayerPermissionsScreenRadioButtonSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newSendInvitesRadioLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newSendInvitesScreenRadioLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newSendInvitesScreenRadioButton<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newSendInvitesScreenRadioButtonSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newDeathScreenRadioLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newDeathScreenRadioLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newDeathScreenRadioButton<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newDeathScreenRadioButtonSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newBedScreenRadioLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newBedScreenRadioLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newBedScreenRadioButton<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newBedScreenRadioButtonSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_oreUiGameplayUiRadioLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_oreUiGameplayUiRadioLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_oreUiGameplayUiRadioButton<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_oreUiGameplayUiRadioButtonSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_endOfUiScreenOverrideDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "section_divider">;
    static uiDebugSection_endOfUiScreenOverrideDivider_sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_endOfUiSceenOverrideDividerSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newSettingsScreenRadioLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newSettingsScreenRadioLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newSettingsScreenRadioButton<T extends Types = Types.Grid>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_newSettingsScreenRadioButtonSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_screenOptInOptionsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_screenOptInInfoLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_screenOptInOptionsLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_endOfUiScreenOptInDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "section_divider">;
    static uiDebugSection_endOfUiScreenOptInDivider_sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_endOfUiSceenOptInDividerSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_otherUiOptionsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_otherUiOptionsLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_optionToggleDefaultFontOverride<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_optionToggleDevShowTcuiReplacement<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_optionToggleUseMobileDataBlockedModal<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_uiFeatureTogglesSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_optionShowTouchControlSelectionScreen<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_optionResetOnStart<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_optionSliderDragDwell<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_optionSliderStackSplitting<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_resetRenderDistanceWarningModalLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_resetRenderDistanceWarningModalLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_resetRenderDistanceWarningModal<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_resetRenderDistanceWarningModalSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_oreUiDeveloperPagesDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "section_divider">;
    static uiDebugSection_oreUiDeveloperPagesDivider_sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_oreUiDeveloperPagesSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_openOreUiLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_openOreUiLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_openOreUiDocs<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_openOreUiTests<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_openOreUiPerf<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_openOreUiTestModal<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static uiDebugSection_openOreUiTestsSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduDebugSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "edu_feature_toggles_label" | "edu_feature_toggles_label_spacer" | "edu_demo" | "edu_ad_debug_panel" | "edu_ad_token_refresh_threshold" | "edu_ad_max_signin_token_refresh" | "edu_ad_max_graph_token_refresh" | "edu_environment_divider" | "edu_environment_spacer" | "edu_env_dropdown" | "edu_azurenotebooks_env_dropdown">;
    static eduDebugSection_eduFeatureTogglesLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduDebugSection_eduFeatureTogglesLabelSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduDebugSection_eduDemo<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduDebugSection_eduAdDebugPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduDebugSection_eduAdTokenRefreshThreshold<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduDebugSection_eduAdMaxSigninTokenRefresh<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduDebugSection_eduAdMaxGraphTokenRefresh<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduDebugSection_eduEnvironmentDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "section_divider">;
    static eduDebugSection_eduEnvironmentDivider_sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduDebugSection_eduEnvironmentSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduDebugSection_eduEnvDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduDebugSection_eduAzurenotebooksEnvDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static flightingDebugButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static flightingDebugSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "treatment_override_panel" | "configuration_override_panel">;
    static flightingDebugSection_treatmentOverridePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "option_toggle_treatment_override" | "override_treatments_panel">;
    static flightingDebugSection_treatmentOverridePanel_optionToggleTreatmentOverride<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static flightingDebugSection_treatmentOverridePanel_overrideTreatmentsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static flightingDebugSection_configurationOverridePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "option_toggle_configuration_override" | "override_configurations_panel">;
    static flightingDebugSection_configurationOverridePanel_optionToggleConfigurationOverride<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static flightingDebugSection_configurationOverridePanel_overrideConfigurationsPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlayButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "generic_label" | "spacer_0" | "spacer_1" | "gamepad_helper_label">;
    static howToPlaySection_spacer0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySection_genericLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySection_spacer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static howToPlaySection_gamepadHelperLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static devXboxEnvironmentDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static devDiscoveryEnvironmentDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static devServiceOverrideTypeDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static devRealmsEnvironmentDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static devRealmsSkuDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultProfilingGroupDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static devNethernetLoggingVerbosityDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static devHttpLoggingVerbosityDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static devXsapiLoggingVerbosityDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static devDebugSpeedMultiplierOptions<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static devDebugHudDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static devChunkMapModeContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static devQualityDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static vysncDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static deferredPlatformOverrideDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static devIdentityEnvironmentDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static devEducationEnvironmentDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static devAzureNotebooksEnvironmentDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static devSunsettingTierDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static graphicsModeDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static upscalingModeDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedGraphicsOptionsButtonContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "fill_pad" | "plus_panel" | "minus_panel" | "advanced_graphics_options_label">;
    static advancedGraphicsOptionsButtonContent_advancedGraphicsOptionsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedGraphicsOptionsButtonContent_fillPad<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedGraphicsOptionsButtonContent_plusPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "plus">;
    static advancedGraphicsOptionsButtonContent_plusPanel_plus<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedGraphicsOptionsButtonContent_minusPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "minus">;
    static advancedGraphicsOptionsButtonContent_minusPanel_minus<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedGraphicsOptionsSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "upscaling_percentage" | "bloom_strength" | "gamma_calibration" | "spacer_0" | "fancy_clouds_toggle" | "smooth_lighting_toggle" | "upscaling_toggle" | "max_framerate_slider" | "msaa_slider" | "shadow_quality_slider" | "point_light_shadow_quality_slider" | "point_light_loding_quality_slider" | "cloud_quality_slider" | "volumetric_fog_quality_slider" | "reflections_quality_slider" | "upscaling_mode">;
    static advancedGraphicsOptionsSection_spacer0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedGraphicsOptionsSection_gammaCalibration<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedGraphicsOptionsSection_maxFramerateSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedGraphicsOptionsSection_msaaSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedGraphicsOptionsSection_shadowQualitySlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedGraphicsOptionsSection_pointLightShadowQualitySlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedGraphicsOptionsSection_pointLightLodingQualitySlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedGraphicsOptionsSection_cloudQualitySlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedGraphicsOptionsSection_volumetricFogQualitySlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedGraphicsOptionsSection_reflectionsQualitySlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedGraphicsOptionsSection_bloomStrength<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedGraphicsOptionsSection_upscalingToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedGraphicsOptionsSection_upscalingMode<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedGraphicsOptionsSection_upscalingPercentage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedGraphicsOptionsSection_fancyCloudsToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static advancedGraphicsOptionsSection_smoothLightingToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class RealmsWorldSection extends Class {
    static realmNameEdit<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldNameEdit<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static realmDescriptionEdit<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static downloadWorldButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static uploadWorldButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static resetWorldButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static manageFeedButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static clubInfoLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static difficultyDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameModeDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "random_tick_speed" | "respawn_radius" | "padding_1" | "padding_0" | "padding_2" | "upload_world_button" | "option_info_label" | "realm_name_edit" | "world_name_edit" | "realm_description_edit" | "download_world_button" | "reset_world_button" | "manage_feed_button" | "club_info_label" | "difficulty_dropdown" | "game_mode_dropdown" | "hardcore_info_label" | "is_hardcore_toggle" | "world_options_label" | "pvp_toggle" | "show_coordinates_toggle" | "locator_bar_toggle" | "show_days_played_toggle" | "fire_spreads_toggle" | "recipes_unlock_toggle" | "tnt_explodes_toggle" | "respawn_blocks_explode_toggle" | "mob_loot_toggle" | "natural_regeneration_toggle" | "tile_drops_toggle" | "player_sleep_toggle" | "player_sleep_percentage_slider" | "immediate_respawn_toggle" | "world_cheats_label" | "allow_cheats_toggle" | "daylight_cycle_toggle" | "keep_inventory_toggle" | "mob_spawn_toggle" | "mob_griefing_toggle" | "entities_drop_loot_toggle" | "weather_cycle_toggle" | "command_blocks_enabled_toggle">;
    static panelContent_optionInfoLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_hardcoreInfoLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_realmNameEdit<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_worldNameEdit<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_realmDescriptionEdit<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_difficultyDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_gameModeDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_isHardcoreToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_worldOptionsLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_pvpToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_showCoordinatesToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_locatorBarToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_showDaysPlayedToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_fireSpreadsToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_recipesUnlockToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_tntExplodesToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_respawnBlocksExplodeToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_mobLootToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_naturalRegenerationToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_tileDropsToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_playerSleepToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_playerSleepPercentageSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_immediateRespawnToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_respawnRadius<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_worldCheatsLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_allowCheatsToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_daylightCycleToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_keepInventoryToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_mobSpawnToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_mobGriefingToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_entitiesDropLootToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_weatherCycleToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_commandBlocksEnabledToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_randomTickSpeed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_downloadWorldButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_padding0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_uploadWorldButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_resetWorldButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_clubInfoLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static panelContent_manageFeedButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class SettingsCommon extends Class {
    static arrowImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static subsectionTitle<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer_0" | "spacer_1" | "sizer_0" | "sizer_1">;
    static subsectionTitle_spacer0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static subsectionTitle_sizer0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "title">;
    static subsectionTitle_sizer0_title<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static subsectionTitle_spacer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static subsectionTitle_sizer1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "section_divider">;
    static subsectionTitle_sizer1_sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static actionButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static actionButtonDarkText<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static linkButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGroupLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static optionGroupLabel_text<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGroupHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static optionGroupHeader_text<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGroupSpacedLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static optionGroupSpacedLabel_text<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGroupSpacedHeader<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "text">;
    static optionGroupSpacedHeader_text<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGroupSectionDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background">;
    static optionGroupSectionDivider_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGeneric<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_generic_core">;
    static optionGeneric_optionGenericCore<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static whiteLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGenericCore<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer" | "two_line_layout" | "one_line_layout">;
    static optionGenericCore_twoLineLayout<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer" | "spacer2" | "option_label_panel" | "option_descriptive_text_0" | "$control_name">;
    static optionGenericCore_twoLineLayout_optionLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_label_subpanel_01" | "option_label_subpanel_02" | "option_tooltip">;
    static optionGenericCore_twoLineLayout_optionLabelPanel_optionLabelSubpanel01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_label">;
    static optionGenericCore_twoLineLayout_optionLabelPanel_optionLabelSubpanel01_optionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGenericCore_twoLineLayout_optionLabelPanel_optionLabelSubpanel02<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_label">;
    static optionGenericCore_twoLineLayout_optionLabelPanel_optionLabelSubpanel02_optionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGenericCore_twoLineLayout_optionLabelPanel_optionTooltip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGenericCore_twoLineLayout_spacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGenericCore_twoLineLayout_optionDescriptiveText0<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGenericCore_twoLineLayout_spacer2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGenericCore_twoLineLayout_$controlName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGenericCore_oneLineLayout<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_label_subpanel_01" | "option_label_subpanel_02" | "option_tooltip" | "option_descriptive_text">;
    static optionGenericCore_oneLineLayout_optionLabelSubpanel01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_label" | "$control_name">;
    static optionGenericCore_oneLineLayout_optionLabelSubpanel01_$controlName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGenericCore_oneLineLayout_optionLabelSubpanel01_optionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGenericCore_oneLineLayout_optionLabelSubpanel02<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "option_label" | "$control_name">;
    static optionGenericCore_oneLineLayout_optionLabelSubpanel02_$controlName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGenericCore_oneLineLayout_optionLabelSubpanel02_optionLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGenericCore_oneLineLayout_optionDescriptiveText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGenericCore_oneLineLayout_optionTooltip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGenericCore_spacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGenericCoreLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGenericTooltipImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGenericTooltipTopPopup<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGenericTooltipBottomPopup<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGenericTooltip<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "hover_detection_input_panel" | "option_generic_tooltip_top_popup" | "option_generic_tooltip_bottom_popup" | "focus_detection_input_panel_two_line_layout">;
    static optionGenericTooltip_focusDetectionInputPanelTwoLineLayout<T extends Types = Types.TooltipTrigger>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGenericTooltip_hoverDetectionInputPanel<T extends Types = Types.TooltipTrigger>(properties?: PropertiesType[T]): Modify<T, "option_generic_tooltip_image">;
    static optionGenericTooltip_hoverDetectionInputPanel_optionGenericTooltipImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGenericTooltip_optionGenericTooltipTopPopup<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionGenericTooltip_optionGenericTooltipBottomPopup<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionTextEditControl<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionTextEditControlWithButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "button" | "text_box">;
    static optionTextEditControlWithButton_textBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionTextEditControlWithButton_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionTextEditControlWithTextButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "button" | "text_box">;
    static optionTextEditControlWithTextButton_textBox<T extends Types = Types.EditBox>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionTextEditControlWithTextButton_button<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionToggleStateTemplate<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionToggleOn<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionToggleOff<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionToggleOnHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionToggleOffHover<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionToggleOnLocked<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionToggleOffLocked<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionToggleControl<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxVisualsUnchecked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxVisualsChecked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxVisualsUncheckedLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxVisualsCheckedLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxVisualsUncheckedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxVisualsCheckedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxVisuals<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "checkbox_image" | "checkbox_label" | "accessibility_selection_highlight">;
    static checkboxVisuals_checkboxImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxVisuals_checkboxLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxVisuals_accessibilitySelectionHighlight<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static checkboxWithHighlightAndLabel<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioVisualsUnchecked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioVisualsChecked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioVisualsUncheckedLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioVisualsCheckedLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioVisualsUncheckedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioVisualsCheckedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioVisuals<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "accessibility_selection_highlight" | "radio_image" | "radio_label">;
    static radioVisuals_radioImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioVisuals_radioLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioVisuals_accessibilitySelectionHighlight<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioWithLabelCore<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionRadioGroupControl<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "0">;
    static optionRadioGroupControl_0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioWithLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "radio_with_label_core">;
    static radioWithLabel_radioWithLabelCore<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioWithLabelAndIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "radio_with_label_core" | "radio_with_label_icon">;
    static radioWithLabelAndIcon_radioWithLabelCore<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioWithLabelAndIcon_radioWithLabelIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioWithLabelAndContentUnchecked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioWithLabelAndContentChecked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioWithLabelAndContentUncheckedLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioWithLabelAndContentCheckedLocked<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioWithLabelAndContentUncheckedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioWithLabelAndContentCheckedHover<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioWithLabelAndContentStackItem<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioWithLabelAndContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "radio_background" | "radio_item_with_description_stack">;
    static radioWithLabelAndContent_radioBackground<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioWithLabelAndContent_radioItemWithDescriptionStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "radio_icon_and_label" | "radio_description">;
    static radioWithLabelAndContent_radioItemWithDescriptionStack_radioIconAndLabel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioWithLabelAndContent_radioItemWithDescriptionStack_radioDescription<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioItemWithLabelAndContentStack<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "initial_padding" | "radio_image_panel" | "radio_to_content_padding" | "radio_content_panel" | "content_to_label_padding" | "radio_label_panel">;
    static radioItemWithLabelAndContentStack_initialPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioItemWithLabelAndContentStack_radioImagePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "image">;
    static radioItemWithLabelAndContentStack_radioImagePanel_image<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioItemWithLabelAndContentStack_radioToContentPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioItemWithLabelAndContentStack_radioContentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "radio_image">;
    static radioItemWithLabelAndContentStack_radioContentPanel_radioImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioItemWithLabelAndContentStack_contentToLabelPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioItemWithLabelAndContentStack_radioLabelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "radio_label">;
    static radioItemWithLabelAndContentStack_radioLabelPanel_radioLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioDescriptionPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "description">;
    static radioDescriptionPanel_description<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioDescription<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static radioItemWithLabelAndContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "radio_with_label_core">;
    static radioItemWithLabelAndContent_radioWithLabelCore<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionSliderControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "slider">;
    static optionSliderControl_slider<T extends Types = Types.Slider>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultOptionsDropdownToggleButtonStateContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "label_panel" | "arrow_panel" | "left_padding" | "right_padding" | "option_content" | "option_content_padding">;
    static defaultOptionsDropdownToggleButtonStateContent_leftPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultOptionsDropdownToggleButtonStateContent_optionContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultOptionsDropdownToggleButtonStateContent_optionContentPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultOptionsDropdownToggleButtonStateContent_labelPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "label">;
    static defaultOptionsDropdownToggleButtonStateContent_labelPanel_label<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultOptionsDropdownToggleButtonStateContent_arrowPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dropdown_chevron_image">;
    static defaultOptionsDropdownToggleButtonStateContent_arrowPanel_dropdownChevronImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static defaultOptionsDropdownToggleButtonStateContent_rightPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionsDropdownToggleControl<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionsDropdownDarkToggleControl<T extends Types = Types.Toggle>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionDropdownControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "dropdown">;
    static optionDropdownControl_dropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionDropdownControlNoScroll<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionInfoLabelWithIcon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "icon_panel" | "control">;
    static optionInfoLabelWithIcon_control<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionInfoLabelWithIcon_iconPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding2" | "icon_image">;
    static optionInfoLabelWithIcon_iconPanel_iconImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionInfoLabelWithIcon_iconPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionInfoLabelIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionIconLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionInfoLabelWithBulb<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "stack_panel">;
    static optionInfoLabelWithBulb_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding1" | "padding2" | "padding3" | "label_panel" | "bulb_panel">;
    static optionInfoLabelWithBulb_stackPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionInfoLabelWithBulb_stackPanel_bulbPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding1" | "padding2" | "bulb_image">;
    static optionInfoLabelWithBulb_stackPanel_bulbPanel_padding1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionInfoLabelWithBulb_stackPanel_bulbPanel_bulbImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionInfoLabelWithBulb_stackPanel_bulbPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionInfoLabelWithBulb_stackPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionInfoLabelWithBulb_stackPanel_labelPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding2" | "info_label1" | "info_label2">;
    static optionInfoLabelWithBulb_stackPanel_labelPanel_infoLabel1<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionInfoLabelWithBulb_stackPanel_labelPanel_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionInfoLabelWithBulb_stackPanel_labelPanel_infoLabel2<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionInfoLabelWithBulb_stackPanel_padding3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionInfoLabelWithImage<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "control">;
    static optionInfoLabelWithImage_control<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionInfoLabelImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionRadioGroup<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionRadioDropdownGroup<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "radio_control_group">;
    static optionRadioDropdownGroup_radioControlGroup<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionTextEdit<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionTextEditWithButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionTextEditWithTextButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionDropdownNoScroll<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionCustomControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionInfoLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dynamicDialogScreen<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
    static settingsContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "background" | "stack_panel" | "popup_dialog_factory">;
    static settingsContent_background<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static settingsContent_stackPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "content_panel">;
    static settingsContent_stackPanel_contentPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "container" | "common_panel">;
    static settingsContent_stackPanel_contentPanel_commonPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static settingsContent_stackPanel_contentPanel_container<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$dialog_content">;
    static settingsContent_stackPanel_contentPanel_container_$dialogContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static settingsContent_popupDialogFactory<T extends Types = Types.Factory>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleButtonControl<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "progress_loading_bars" | "tab_button_text" | "glyph" | "glyph_color">;
    static toggleButtonControl_glyph<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleButtonControl_glyphColor<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleButtonControl_progressLoadingBars<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static toggleButtonControl_tabButtonText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionToggleBase<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionTitleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogTitleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogTitles<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "left_padding" | "section_title_label" | "dialog_title_label" | "center_padding" | "right_padding_is_always_right">;
    static dialogTitles_leftPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogTitles_dialogTitleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogTitles_centerPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogTitles_sectionTitleLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogTitles_rightPaddingIsAlwaysRight<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "selector_area" | "content_area" | "section_divider" | "dialog_titles">;
    static dialogContent_dialogTitles<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent_selectorArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent_contentArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static dialogContent_sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorGroupLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static scrollableSelectorAreaContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "$selector_stack_panel">;
    static scrollableSelectorAreaContent_$selectorStackPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel">;
    static selectorArea_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentArea<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "control">;
    static contentArea_control<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "scrolling_panel" | "header_panel" | "footer_panel">;
    static contentArea_control_headerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static contentArea_control_headerPanel_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentArea_control_scrollingPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static contentArea_control_footerPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "content">;
    static contentArea_control_footerPanel_content<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static screenBase<T extends Types = Types.Screen>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class SocialSection extends Class {
    static partyButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "party_invite_header" | "party_invite_label_padding" | "party_invite_filter_dropdown" | "party_invite_reset_default_padding" | "party_settings_divider" | "party_settings_header" | "party_settings_label_padding" | "party_invite_send_privileges_dropdown" | "party_privacy_default_padding" | "party_privacy_dropdown" | "party_privacy_label_wrapper" | "party_visibility_default_padding" | "party_visibility_dropdown" | "party_visibility_label_wrapper" | "party_settings_reset_default_button_default_padding" | "party_settings_reset_default_button" | "microsoft_account_settings_divider" | "microsoft_account_settings_header" | "microsoft_account_settings_padding" | "microsoft_account_settings_label_wrapper" | "privacy_and_online_safety_button_padding" | "privacy_and_online_safety_button" | "microsoft_family_child_controls_button_padding" | "microsoft_family_child_controls_button" | "microsoft_family_child_controls_padding" | "platform_settings_header" | "platform_settings_padding" | "platform_settings_label_wrapper" | "platform_settings_button_padding" | "platform_settings_button">;
    static partySection_partyInviteHeader<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_partyInviteLabelPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_partyInviteFilterDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_partyInviteResetDefaultPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_partySettingsDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "section_divider">;
    static partySection_partySettingsDivider_sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_partySettingsHeader<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_partySettingsLabelPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_partyInviteSendPrivilegesDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_partyPrivacyDefaultPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_partyPrivacyDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_partyPrivacyLabelWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_partyVisibilityDefaultPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_partyVisibilityDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_partyVisibilityLabelWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_partySettingsResetDefaultButtonDefaultPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_partySettingsResetDefaultButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_microsoftAccountSettingsDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "section_divider">;
    static partySection_microsoftAccountSettingsDivider_sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_microsoftAccountSettingsHeader<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_microsoftAccountSettingsPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_microsoftAccountSettingsLabelWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_privacyAndOnlineSafetyButtonPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_privacyAndOnlineSafetyButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_microsoftFamilyChildControlsButtonPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_microsoftFamilyChildControlsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_microsoftFamilyChildControlsPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_platformSettingsHeader<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_platformSettingsPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_platformSettingsLabelWrapper<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_platformSettingsButtonPadding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partySection_platformSettingsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static partyPrivacyLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static partyVisibilityLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static microsoftAccountSettingsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformSettingsLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static partyInviteFilterDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partyPrivacyDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partyVisibilityDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static partyInviteSendPrivilegesDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
declare class WorldSection extends Class {
    static selectorPaneContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer" | "spacer_02" | "spacer_01" | "spacer_03" | "selector_group_label_1" | "spacer_04" | "spacer_05" | "debug_button" | "world_snapshot_image" | "play_or_create_panel" | "upload_world_panel" | "play_or_host_panel" | "server_settings_visibility_panel" | "game_button" | "classroom_button" | "switch_game_button" | "multiplayer_button" | "edu_cloud_button">;
    static selectorPaneContent_worldSnapshotImage<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "thumbnail">;
    static selectorPaneContent_worldSnapshotImage_thumbnail<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, "border">;
    static selectorPaneContent_worldSnapshotImage_thumbnail_border<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPaneContent_playOrCreatePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPaneContent_uploadWorldPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPaneContent_playOrHostPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPaneContent_spacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPaneContent_serverSettingsVisibilityPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "selector_group_label_0" | "server_settings_button" | "server_spacer">;
    static selectorPaneContent_serverSettingsVisibilityPanel_selectorGroupLabel0<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPaneContent_serverSettingsVisibilityPanel_serverSettingsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPaneContent_serverSettingsVisibilityPanel_serverSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPaneContent_selectorGroupLabel1<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPaneContent_gameButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPaneContent_spacer01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPaneContent_classroomButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPaneContent_spacer02<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPaneContent_switchGameButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPaneContent_spacer03<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPaneContent_multiplayerButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPaneContent_spacer04<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPaneContent_eduCloudButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPaneContent_spacer05<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static selectorPaneContent_debugButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static launchWorldButtonStackDef<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOrCreateStackBedrock<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "create_or_play_button" | "play_on_realm_button">;
    static playOrCreateStackBedrock_createOrPlayButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOrCreateStackBedrock_playOnRealmButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static uploadWorldStackBedrock<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "upload_world_button">;
    static uploadWorldStackBedrock_uploadWorldButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduPlayHostButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOrHostStackEdu<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "edu_play_button" | "edu_host_button">;
    static playOrHostStackEdu_eduPlayButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static playOrHostStackEdu_eduHostButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonsSelectorPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "spacer_02" | "spacer_01" | "selector_group_label_2" | "level_texture_pack_button" | "addon_button">;
    static addonsSelectorPanel_spacer01<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonsSelectorPanel_selectorGroupLabel2<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonsSelectorPanel_levelTexturePackButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonsSelectorPanel_spacer02<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonsSelectorPanel_addonButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverSettingsButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static serverSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static exportWorldButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static deleteWorldButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static exportTemplateButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static copyWorldButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static editWorldManipulationButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "delete" | "export">;
    static editWorldManipulationButtons_export<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static editWorldManipulationButtons_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static editWorldManipulationButtons_delete<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "experimental_toggles" | "education_toggle" | "random_tick_speed" | "respawn_radius" | "button_panel" | "delete_button" | "option_info_label" | "option_dropdown_permissions" | "option_dropdown_0" | "option_text_edit_1" | "option_dropdown_1" | "option_dropdown_2" | "option_text_edit_0" | "hardcore_info_label" | "is_hardcore_toggle" | "world_options_label" | "pvp_toggle" | "show_coordinates_toggle" | "locator_bar_toggle" | "show_days_played_toggle" | "fire_spreads_toggle" | "recipes_unlock_toggle" | "tnt_explodes_toggle" | "respawn_blocks_explode_toggle" | "mob_loot_toggle" | "natural_regeneration_toggle" | "tile_drops_toggle" | "player_sleep_toggle" | "player_sleep_percentage_slider" | "immediate_respawn_toggle" | "world_cheats_label" | "allow_cheats_toggle" | "daylight_cycle_toggle" | "keep_inventory_toggle" | "mob_spawn_toggle" | "mob_griefing_toggle" | "entities_drop_loot_toggle" | "weather_cycle_toggle" | "command_blocks_enabled_toggle" | "new_edit_world_opt_in_panel" | "new_edit_world_opt_in_divider" | "unlock_template_options_panel" | "world_settings_label" | "project_section_divider_1" | "project_header_label" | "project_section_divider_2" | "project_spacer" | "export_settings_section_divider_1" | "export_settings_header_label" | "export_settings_header_description" | "export_settings_section_divider_2" | "export_settings_spacer" | "world_preferences_label" | "starting_map_toggle" | "bonus_chest_toggle" | "option_dropdown_3" | "level_seed_selector_edu" | "level_seed_selector" | "level_seed_selector_trial" | "server_sim_distance_slider" | "experimental_toggles_label" | "experimental_toggles_label_info" | "always_day_toggle" | "world_management_label" | "convert_to_infinite_panel" | "export_template_panel" | "clear_player_data_panel" | "copy_world_panel" | "upload_download_slot_panel" | "replace_slot_panel">;
    static gameSection_newEditWorldOptInPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "panel_title" | "panel_text" | "opt_in_button">;
    static gameSection_newEditWorldOptInPanel_panelTitle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_newEditWorldOptInPanel_panelText<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_newEditWorldOptInPanel_optInButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_newEditWorldOptInDivider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "section_divider">;
    static gameSection_newEditWorldOptInDivider_sectionDivider<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_unlockTemplateOptionsPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "option_info_label" | "unlock_template_options_button">;
    static gameSection_unlockTemplateOptionsPanel_optionInfoLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_unlockTemplateOptionsPanel_unlockTemplateOptionsButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_optionInfoLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_hardcoreInfoLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_worldSettingsLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_optionTextEdit0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_projectSectionDivider1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_projectHeaderLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_projectSectionDivider2<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_projectSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_optionTextEdit1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_exportSettingsSectionDivider1<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_exportSettingsHeaderLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_exportSettingsHeaderDescription<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_exportSettingsSectionDivider2<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_exportSettingsSpacer<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_optionDropdown0<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_optionDropdown1<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_isHardcoreToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_optionDropdown2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_worldPreferencesLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_startingMapToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_bonusChestToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_optionDropdownPermissions<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_optionDropdown3<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_levelSeedSelectorEdu<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_levelSeedSelector<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_levelSeedSelectorTrial<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_serverSimDistanceSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_worldOptionsLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_pvpToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_showCoordinatesToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_locatorBarToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_showDaysPlayedToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_fireSpreadsToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_recipesUnlockToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_tntExplodesToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_respawnBlocksExplodeToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_mobLootToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_naturalRegenerationToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_tileDropsToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_playerSleepToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_playerSleepPercentageSlider<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_immediateRespawnToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_respawnRadius<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_experimentalTogglesLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_experimentalTogglesLabelInfo<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_experimentalToggles<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_worldCheatsLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_allowCheatsToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_educationToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_alwaysDayToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_daylightCycleToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_keepInventoryToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_mobSpawnToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_mobGriefingToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_entitiesDropLootToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_weatherCycleToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_commandBlocksEnabledToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_randomTickSpeed<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_worldManagementLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_convertToInfinitePanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "convert_to_infinite_button">;
    static gameSection_convertToInfinitePanel_convertToInfiniteButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_deleteButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_buttonPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "manipulation_controls">;
    static gameSection_buttonPanel_manipulationControls<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_exportTemplatePanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "template_version" | "template_buttons" | "export_template">;
    static gameSection_exportTemplatePanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_exportTemplatePanel_templateVersion<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_exportTemplatePanel_templateButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "template_image_picker_button" | "template_localization_picker_button">;
    static gameSection_exportTemplatePanel_templateButtons_templateImagePickerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_exportTemplatePanel_templateButtons_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_exportTemplatePanel_templateButtons_templateLocalizationPickerButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_exportTemplatePanel_exportTemplate<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_clearPlayerDataPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "clear_player_data_button">;
    static gameSection_clearPlayerDataPanel_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_clearPlayerDataPanel_clearPlayerDataButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_copyWorldPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "copy_world">;
    static gameSection_copyWorldPanel_copyWorld<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_uploadDownloadSlotPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "upload_download_slot_button">;
    static gameSection_uploadDownloadSlotPanel_uploadDownloadSlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static gameSection_replaceSlotPanel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "replace_slot_button">;
    static gameSection_replaceSlotPanel_replaceSlotButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static levelTexturePackButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static levelTexturePackSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static addonSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldGameModeDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static xblBroadcastDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static platformBroadcastDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static playerGameModeDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldTypeDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static worldDifficultyDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static multiplayerButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static crossPlatformWarningLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static multiplayerSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "open_uri_button" | "multiplayer_game_toggle" | "platform_settings_dropdown" | "xbl_settings_dropdown" | "server_visible_toggle" | "general_multiplayer_warning_label" | "platform_multiplayer_warning_label" | "xbl_multiplayer_warning_label">;
    static multiplayerSection_multiplayerGameToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static multiplayerSection_platformSettingsDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static multiplayerSection_xblSettingsDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static multiplayerSection_serverVisibleToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static multiplayerSection_generalMultiplayerWarningLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static multiplayerSection_openUriButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static multiplayerSection_platformMultiplayerWarningLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static multiplayerSection_xblMultiplayerWarningLabel<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionTextEditMockWithButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionTextEditMockControlWithButton<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "trial_text_box_button" | "seed_arrow_button">;
    static optionTextEditMockControlWithButton_trialTextBoxButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static optionTextEditMockControlWithButton_seedArrowButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static experimentalToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static openAccountSettingButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "cloud_file_last_changed" | "cloud_file_name" | "edu_cloud_label" | "cloud_upload_toggle" | "cloud_help_wrapper_panel">;
    static eduCloudSection_eduCloudLabel<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudSection_cloudFileName<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudSection_cloudFileLastChanged<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudSection_cloudUploadToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudSection_cloudHelpWrapperPanel<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padded_icon" | "cloud_help_button">;
    static eduCloudSection_cloudHelpWrapperPanel_cloudHelpButton<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static eduCloudSection_cloudHelpWrapperPanel_paddedIcon<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, "icon">;
    static eduCloudSection_cloudHelpWrapperPanel_paddedIcon_icon<T extends Types = Types.Image>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugButton<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "base_game_version_debug_text" | "game_version_override_toggle" | "flat_nether_toggle" | "game_version_override_textbox" | "spawn_dimension_dropdown" | "spawn_biome_dropdown" | "biome_override_dropdown">;
    static debugSection_flatNetherToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_gameVersionOverrideToggle<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_gameVersionOverrideTextbox<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_spawnDimensionDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_spawnBiomeDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_biomeOverrideDropdown<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSection_baseGameVersionDebugText<T extends Types = Types.Label>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSpawnDimensionDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugSpawnBiomeDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static debugBiomeOverrideDropdownContent<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorEditWorldManipulationButtonsContent<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "padding_2" | "export_as_project" | "export_as_world_buttons" | "project_manipulations_buttons">;
    static editorEditWorldManipulationButtonsContent_exportAsProject<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorEditWorldManipulationButtonsContent_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorEditWorldManipulationButtonsContent_exportAsWorldButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "export_as_world" | "export_as_template">;
    static editorEditWorldManipulationButtonsContent_exportAsWorldButtons_exportAsWorld<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorEditWorldManipulationButtonsContent_exportAsWorldButtons_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorEditWorldManipulationButtonsContent_exportAsWorldButtons_exportAsTemplate<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorEditWorldManipulationButtonsContent_padding2<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorEditWorldManipulationButtonsContent_projectManipulationsButtons<T extends Types = Types.StackPanel>(properties?: PropertiesType[T]): Modify<T, "padding" | "copy_project" | "delete_project">;
    static editorEditWorldManipulationButtonsContent_projectManipulationsButtons_copyProject<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorEditWorldManipulationButtonsContent_projectManipulationsButtons_padding<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorEditWorldManipulationButtonsContent_projectManipulationsButtons_deleteProject<T extends Types = Types.Button>(properties?: PropertiesType[T]): Modify<T, string>;
    static editorEditWorldManipulationButtons<T extends Types = Types.Panel>(properties?: PropertiesType[T]): Modify<T, string>;
}
export declare class Vanilla extends Class {
    static achievement: typeof Achievement;
    static addExternalServer: typeof AddExternalServer;
    static adhocInprogress: typeof AdhocInprogress;
    static adhoc: typeof Adhoc;
    static anvil: typeof Anvil;
    static anvilPocket: typeof AnvilPocket;
    static authenticationModals: typeof AuthenticationModals;
    static authentication: typeof Authentication;
    static autoSaveInfo: typeof AutoSaveInfo;
    static beacon: typeof Beacon;
    static beaconPocket: typeof BeaconPocket;
    static blastFurnace: typeof BlastFurnace;
    static book: typeof Book;
    static brewingStand: typeof BrewingStand;
    static brewingStandPocket: typeof BrewingStandPocket;
    static bundlePurchaseWarning: typeof BundlePurchaseWarning;
    static cartography: typeof Cartography;
    static cartographyPocket: typeof CartographyPocket;
    static chalkboard: typeof Chalkboard;
    static chat: typeof Chat;
    static chatSettings: typeof ChatSettings;
    static chest: typeof Chest;
    static chooseRealm: typeof ChooseRealm;
    static cloudUpload: typeof CloudUpload;
    static coinPurchase: typeof CoinPurchase;
    static commandBlock: typeof CommandBlock;
    static confirmDeleteAccount: typeof ConfirmDeleteAccount;
    static contentLog: typeof ContentLog;
    static contentLogHistory: typeof ContentLogHistory;
    static crafterPocket: typeof CrafterPocket;
    static createWorldUpsell: typeof CreateWorldUpsell;
    static credits: typeof Credits;
    static csbPurchaseError: typeof CsbPurchaseError;
    static csb: typeof Csb;
    static customTemplates: typeof CustomTemplates;
    static dayOneExperienceIntro: typeof DayOneExperienceIntro;
    static dayOneExperience: typeof DayOneExperience;
    static death: typeof Death;
    static debugScreen: typeof DebugScreen;
    static devConsole: typeof DevConsole;
    static disconnect: typeof Disconnect;
    static displayLoggedError: typeof DisplayLoggedError;
    static discoveryDialog: typeof DiscoveryDialog;
    static eduFeatured: typeof EduFeatured;
    static eduQuitButton: typeof EduQuitButton;
    static personaEmote: typeof PersonaEmote;
    static enchanting: typeof Enchanting;
    static enchantingPocket: typeof EnchantingPocket;
    static encyclopedia: typeof Encyclopedia;
    static expandedSkinPack: typeof ExpandedSkinPack;
    static feedCommon: typeof FeedCommon;
    static fileUpload: typeof FileUpload;
    static furnace: typeof Furnace;
    static furnacePocket: typeof FurnacePocket;
    static gamepadDisconnected: typeof GamepadDisconnected;
    static gameplay: typeof Gameplay;
    static gameTip: typeof GameTip;
    static gammaCalibration: typeof GammaCalibration;
    static gatheringInfo: typeof GatheringInfo;
    static globalpause: typeof Globalpause;
    static grindstone: typeof Grindstone;
    static grindstonePocket: typeof GrindstonePocket;
    static holographicPostrenderScreen: typeof HolographicPostrenderScreen;
    static horse: typeof Horse;
    static horsePocket: typeof HorsePocket;
    static hostOptions: typeof HostOptions;
    static howToPlayCommon: typeof HowToPlayCommon;
    static howToPlay: typeof HowToPlay;
    static hud: typeof Hud;
    static imReader: typeof ImReader;
    static crafting: typeof Crafting;
    static craftingPocket: typeof CraftingPocket;
    static invite: typeof Invite;
    static bed: typeof Bed;
    static jigsawEditor: typeof JigsawEditor;
    static lateJoin: typeof LateJoin;
    static libraryModal: typeof LibraryModal;
    static localWorldPicker: typeof LocalWorldPicker;
    static loom: typeof Loom;
    static loomPocket: typeof LoomPocket;
    static manageFeed: typeof ManageFeed;
    static manifestValidation: typeof ManifestValidation;
    static mobEffect: typeof MobEffect;
    static nonXblUserManagement: typeof NonXblUserManagement;
    static npcInteract: typeof NpcInteract;
    static onlineSafety: typeof OnlineSafety;
    static packSettings: typeof PackSettings;
    static panorama: typeof Panorama;
    static patchNotes: typeof PatchNotes;
    static pause: typeof Pause;
    static pdp: typeof Pdp;
    static pdpScreenshots: typeof PdpScreenshots;
    static perfTurtle: typeof PerfTurtle;
    static permissions: typeof Permissions;
    static personaCastCharacterScreen: typeof PersonaCastCharacterScreen;
    static personaCommon: typeof PersonaCommon;
    static personaPopups: typeof PersonaPopups;
    static play: typeof Play;
    static pocketContainers: typeof PocketContainers;
    static popupDialog: typeof PopupDialog;
    static portfolio: typeof Portfolio;
    static progress: typeof Progress;
    static ratingPrompt: typeof RatingPrompt;
    static realmsPlus: typeof RealmsPlus;
    static realmsplusUpgradeNoticeScreen: typeof RealmsplusUpgradeNoticeScreen;
    static realmsAllowlist: typeof RealmsAllowlist;
    static realmsCommon: typeof RealmsCommon;
    static realmsCreate: typeof RealmsCreate;
    static realmsInviteLinkSettings: typeof RealmsInviteLinkSettings;
    static realmsPendingInvitations: typeof RealmsPendingInvitations;
    static realmsPlusEnded: typeof RealmsPlusEnded;
    static realmsSettings: typeof RealmsSettings;
    static realmsSlots: typeof RealmsSlots;
    static realmsStoriesTransition: typeof RealmsStoriesTransition;
    static redstone: typeof Redstone;
    static resourcePacks: typeof ResourcePacks;
    static safeZone: typeof SafeZone;
    static scoreboard: typeof Scoreboard;
    static screenshot: typeof Screenshot;
    static selectWorld: typeof SelectWorld;
    static serverForm: typeof ServerForm;
    static settings: typeof Settings;
    static sidebarNavigation: typeof SidebarNavigation;
    static sign: typeof Sign;
    static simpleInprogress: typeof SimpleInprogress;
    static skinPackPurchase: typeof SkinPackPurchase;
    static skinPicker: typeof SkinPicker;
    static smithingTable2: typeof SmithingTable2;
    static smithingTable2Pocket: typeof SmithingTable2Pocket;
    static smithingTable: typeof SmithingTable;
    static smithingTablePocket: typeof SmithingTablePocket;
    static smoker: typeof Smoker;
    static start: typeof Start;
    static stonecutter: typeof Stonecutter;
    static stonecutterPocket: typeof StonecutterPocket;
    static storageManagement: typeof StorageManagement;
    static storageManagementPopup: typeof StorageManagementPopup;
    static storageMigrationCommon: typeof StorageMigrationCommon;
    static storageMigrationGeneric: typeof StorageMigrationGeneric;
    static commonStore: typeof CommonStore;
    static storeLayout: typeof StoreLayout;
    static filterMenu: typeof FilterMenu;
    static storeInventory: typeof StoreInventory;
    static storeItemList: typeof StoreItemList;
    static storeProgress: typeof StoreProgress;
    static promoTimeline: typeof PromoTimeline;
    static storeSaleItemList: typeof StoreSaleItemList;
    static storeSearch: typeof StoreSearch;
    static sortMenu: typeof SortMenu;
    static structureEditor: typeof StructureEditor;
    static submitFeedback: typeof SubmitFeedback;
    static tabbedUpsell: typeof TabbedUpsell;
    static thanksForTesting: typeof ThanksForTesting;
    static thirdPartyStore: typeof ThirdPartyStore;
    static toastScreen: typeof ToastScreen;
    static tokenFaq: typeof TokenFaq;
    static trade2: typeof Trade2;
    static trade2Pocket: typeof Trade2Pocket;
    static trade: typeof Trade;
    static tradePocket: typeof TradePocket;
    static trialUpsell: typeof TrialUpsell;
    static ugcViewer: typeof UgcViewer;
    static commonArt: typeof CommonArt;
    static common: typeof Common;
    static commonClassic: typeof CommonClassic;
    static eduCommon: typeof EduCommon;
    static friendsbutton: typeof Friendsbutton;
    static uiHoloCursor: typeof UiHoloCursor;
    static iconbutton: typeof Iconbutton;
    static purchaseCommon: typeof PurchaseCommon;
    static commonButtons: typeof CommonButtons;
    static commonDialogs: typeof CommonDialogs;
    static commonTabs: typeof CommonTabs;
    static commonToggles: typeof CommonToggles;
    static updateDimensions: typeof UpdateDimensions;
    static updateVersion: typeof UpdateVersion;
    static win10TrialConversion: typeof Win10TrialConversion;
    static worldConversionComplete: typeof WorldConversionComplete;
    static worldRecovery: typeof WorldRecovery;
    static worldTemplates: typeof WorldTemplates;
    static xblConsoleQrSignin: typeof XblConsoleQrSignin;
    static xblConsoleSignin: typeof XblConsoleSignin;
    static xblConsoleSigninSucceeded: typeof XblConsoleSigninSucceeded;
    static xblImmediateSignin: typeof XblImmediateSignin;
    static csbContent: typeof CsbContent;
    static csbBanner: typeof CsbBanner;
    static csbBuy: typeof CsbBuy;
    static commonCsb: typeof CommonCsb;
    static csbPurchaseAmazondevicewarning: typeof CsbPurchaseAmazondevicewarning;
    static csbPurchaseWarning: typeof CsbPurchaseWarning;
    static csbSubscriptionPanel: typeof CsbSubscriptionPanel;
    static csbUpsell: typeof CsbUpsell;
    static csbPacks: typeof CsbPacks;
    static csbWelcome: typeof CsbWelcome;
    static csbFaq: typeof CsbFaq;
    static csbLanding: typeof CsbLanding;
    static sdlDropdowns: typeof SdlDropdowns;
    static sdlImageRow: typeof SdlImageRow;
    static sdlLabel: typeof SdlLabel;
    static sdlTextRow: typeof SdlTextRow;
    static realmsPlusContent: typeof RealmsPlusContent;
    static realmsPlusFaq: typeof RealmsPlusFaq;
    static realmsPlusLanding: typeof RealmsPlusLanding;
    static realmsPlusBuy: typeof RealmsPlusBuy;
    static realmsPlusPurchaseWarning: typeof RealmsPlusPurchaseWarning;
    static realmsPlusPacks: typeof RealmsPlusPacks;
    static controlsSection: typeof ControlsSection;
    static generalSection: typeof GeneralSection;
    static realmsWorldSection: typeof RealmsWorldSection;
    static settingsCommon: typeof SettingsCommon;
    static socialSection: typeof SocialSection;
    static worldSection: typeof WorldSection;
}
export {};
