/** * Copyright (c) 2022 - present TinyVue Authors. * Copyright (c) 2022 - present Huawei Cloud Computing Technologies Co., Ltd. * * Use of this source code is governed by an MIT-style license. * * THE OPEN SOURCE SOFTWARE IN THIS PRODUCT IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, * BUT WITHOUT ANY WARRANTY, WITHOUT EVEN THE IMPLIED WARRANTY OF MERCHANTABILITY OR FITNESS FOR * A PARTICULAR PURPOSE. SEE THE APPLICABLE LICENSES FOR MORE DETAILS. * */ export declare const initValue: ({ props, emit }: { props: any; emit: any; }) => () => void; export declare const updateValue: ({ state, props, emit }: { state: any; props: any; emit: any; }) => (value: string) => void; export declare const getOption: (options: any, target: any) => any; export declare const updateTitle: ({ props, state }: { props: any; state: any; }) => () => void; export declare const created: ({ api, emit, props, state, refs, nextTick }: { api: any; emit: any; props: any; state: any; refs: any; nextTick: any; }) => () => void; export declare const computedCurrentOptions: ({ state, props }: { state: any; props: any; }) => () => any; export declare const handleClick: ({ api, props, state }: { api: any; props: any; state: any; }) => (value: any) => void; export declare const handleOptionSelect: ({ api, state, emit }: { api: any; state: any; emit: any; }) => (option: any) => void; export declare const handleSearchInput: ({ state, emit }: { state: any; emit: any; }) => () => void; export declare const toggleItemExpand: ({ state }: { state: any; }) => (option: any) => void; export declare const confirm: ({ state, emit }: { state: any; emit: any; }) => () => void; export declare const reset: ({ api, props, state, emit }: { api: any; props: any; state: any; emit: any; }) => () => void; export declare const handleClose: (state: any) => () => void; export declare const wheelChange: (state: any) => (indexs: any) => void; export declare const clickWheelItem: ({ state, emit }: { state: any; emit: any; }) => (indexs: any, text: any, item: any) => void; export declare const getWheelLevelItems: (wheelData: any, newIndexs: any) => any[]; export declare const getNextLevel: (levelItems: any, children: any, nextIndexs: any, start: any) => any; export declare const getSelected: (wheelLevelItems: any, selectedIndexs: any) => { selectedLabels: string; selectedItems: any[]; }; export declare const loadDefault: ({ props, state }: { props: any; state: any; }) => (value: any) => any; export declare const getMaxFloor: (treeData: any) => number; export declare const getNewHeaderInfo: (headerInfo: any, index: any, isUP: any) => { isSelected: any; title: any; isUP: any; }; export declare const getLabelLevelsInfo: (refs: any) => any; export declare const getRect: (el: any) => { top: any; left: any; width: any; height: any; }; export declare const getEl: (node: any) => any; export declare const getLabelsStyle: (state: any) => any; export declare const getStyleConfig: (data: any, style: any) => any; export declare const getFillArray: (state: any, widthInfo: any, maxWidth: any) => any; export declare const handleSearchBtnClick: ({ props, state, nextTick, vm }: { props: any; state: any; nextTick: any; vm: any; }) => () => void;