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