import type { SetupContext } from 'vue'; import type { CheckboxValueType } from '../../../checkbox'; import type { TransferPanelEmits, TransferPanelProps, TransferPanelState } from '../transfer-panel'; export declare const useCheck: (props: TransferPanelProps, panelState: TransferPanelState, emit: SetupContext['emit']) => { filteredData: import("@vue/reactivity").ComputedRef; checkableData: import("@vue/reactivity").ComputedRef; checkedSummary: import("@vue/reactivity").ComputedRef; isIndeterminate: import("@vue/reactivity").ComputedRef; updateAllChecked: () => void; handleAllCheckedChange: (value: CheckboxValueType) => void; };