import { Ref } from 'vue'; import { ModifierKey } from '../DragSelectCommon'; export interface useMultipleConfig { activeMultipleKeys: Ref; } export declare const useMultiple: (props: Record, emit: (event: any, ...args: any[]) => void, { activeMultipleKeys }: useMultipleConfig) => { multiple: Ref; onStart: (e: PointerEvent | MouseEvent) => void; onEnd: () => void; };