/** * 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 initPullRefresh: ({ t, props, state }: { t: any; props: any; state: any; }) => () => void; export declare const onTouchstart: (state: any) => (event: any) => void; export declare const onTouchmove: ({ state, refs }: { state: any; refs: any; }) => (event: any) => void; export declare const pullDownTouchMove: (state: any, refs: any, event: any) => void; export declare const onTouchend: ({ api, props, state, emit, refs }: { api: any; props: any; state: any; emit: any; refs: any; }) => (event: any) => void; export declare const pullDownTouchEnd: (api: any, state: any, emit: any) => void; export declare const pullUpTouchEnd: (state: any, emit: any, refs: any) => void; export declare const onScroll: ({ state, emit, refs }: { state: any; emit: any; refs: any; }) => () => void; export declare const mountedHandler: ({ api, refs }: { api: any; refs: any; }) => () => void; export declare const beforeUnmountHandler: ({ api, refs }: { api: any; refs: any; }) => () => void; export declare const handlerModelValue: ({ api, state }: { api: any; state: any; }) => (value: any, result: any) => void; export declare const clearPullRefresh: (state: any) => () => void;