/** * 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 computedWrapperStyle: (state: any) => () => { transform: string; transitionDuration: string; transitionProperty: string; lineHeight: string; }; export declare const computedBaseOffset: ({ state, props }: { state: any; props: any; }) => () => number; export declare const onClickItem: ({ api, state }: { api: any; state: any; }) => (index: any) => void; export declare const setIndex: ({ api, state, emit }: { api: any; state: any; emit: any; }) => (index: any, emitChange: any) => void; export declare const adjustIndex: (state: any) => (index: any) => any; export declare const onTouchstart: ({ vm, state }: { vm: any; state: any; }) => (event: any) => void; export declare const onTouchmove: ({ state }: { state: any; }) => (event: any) => void; export declare const onTouchend: ({ api, state }: { api: any; state: any; }) => () => void; export declare const mountedHandler: ({ api, vm, state }: { api: any; vm: any; state: any; }) => () => void; export declare const beforeUnmountHandler: ({ api, vm }: { api: any; vm: any; }) => () => void; export declare const momentum: ({ api, state, props }: { api: any; state: any; props: any; }) => (distance: any, duration: any) => void; export declare const onTransitionEnd: (state: any) => () => void; export declare const setValue: ({ api, state }: { api: any; state: any; }) => (value: any) => any; export declare const getOptionText: ({ state, props }: { state: any; props: any; }) => (option: any) => any; export declare const getValue: (state: any) => () => any; export declare const deepClone: (obj: any) => any; export declare const setOptions: ({ api, state, props }: { api: any; state: any; props: any; }) => (options: any) => void;