import type { IInteraction, InteractionInitOptions } from '../types'; import { Interaction } from './base'; export declare class ClickSelect extends Interaction implements IInteraction { name: string; private clickHandler?; init(options: InteractionInitOptions): void; destroy(): void; private shiftKey; private onShiftKeyDown; private onShiftKeyUp; private onEscKeyDown; }