export default function createInteractions({ chart, config, expando, internal }: { chart: any; config: any; expando: any; internal: any; }): { gestures: { key: string; type: string; options: { event: string; enable(r: any, e: any): boolean; }; recognizeWith: string; events: { tooltipTap(e: any): void; }; }[]; native: { type: string; events: { mousemove(e: any): void; mouseup(e: any): void; mouseleave(): void; wheel(): void; }; }; };