/** * 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 getStyle: (props: any) => () => any; export declare const watchValue: (api: any) => (value: any) => void; export declare const open: ({ api, constants, emit, props, state }: { api: any; constants: any; emit: any; props: any; state: any; }) => () => void; export declare const close: ({ api, constants, emit, props, state }: { api: any; constants: any; emit: any; props: any; state: any; }) => () => void; export declare const onTouchMove: ({ vm, state }: { vm: any; state: any; }) => (event: any) => void; export declare const renderOverlay: ({ api, nextTick, props, state }: { api: any; nextTick: any; props: any; state: any; }) => () => void; export declare const updateZIndex: ({ vm, state }: { vm: any; state: any; }) => (value?: number) => number; export declare const clickOverlay: ({ api, props, emit }: { api: any; props: any; emit: any; }) => () => void; export declare const closed: (emit: any) => () => any; export declare const opened: (emit: any) => () => any;