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