/** * 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 visibleHandle: (emit: any) => () => any; export declare const watchVisible: (emit: any) => ({ state, value }: { state: any; value: any; }) => void; export declare const getDataType: (state: any) => () => "text" | "object" | "cascade"; export declare const format: ({ state, api }: { state: any; api: any; }) => () => void; export declare const formatCascade: ({ state, props }: { state: any; props: any; }) => () => void; export declare const change: (api: any) => (index: any) => void; export declare const setColumnValue: (api: any) => (index: any, value: any) => void; export declare const setValues: (api: any) => (values: any) => void; export declare const getColumnValue: (api: any) => (index: any) => any; export declare const confirm: ({ api, childrenPickerRefs }: { api: any; childrenPickerRefs: any; }) => () => void; export declare const cancel: ({ api, emit }: { api: any; emit: any; }) => () => void; export declare const emitEvent: ({ api, state, emit }: { api: any; state: any; emit: any; }) => (event: any) => void; export declare const getColumn: (childrenPickerRefs: any) => (index: any) => any; export declare const getColumnIndex: (api: any) => (columnIndex: any) => any; export declare const getValues: (childrenPickerRefs: any) => () => any; export declare const getIndexes: (childrenPickerRefs: any) => () => any; export declare const setIndexes: (api: any) => (indexes: any) => void; export declare const setColumnIndex: (api: any) => (columnIndex: any, optionIndex: any) => void; export declare const getColumnValues: (childrenPickerRefs: any) => (index: any) => any; export declare const setColumnValues: (childrenPickerRefs: any) => (index: any, options: any) => void; export declare const onCascadeChange: ({ api, state, props }: { api: any; state: any; props: any; }) => (columnIndex: any) => void; export declare const onChange: ({ api, state, emit }: { api: any; state: any; emit: any; }) => (columnIndex: any) => void; export declare const getChildrenComponent: ({ state, vm, constants }: { state: any; vm: any; constants: any; }) => any[];