import type React from 'react'; export interface TriggerMap { [triggerChar: string]: { component: React.ComponentType; dataProvider: (q: string, text: string, onReady: (data: unknown[], token: string) => void) => Promise | Array | string>; callback?: (item: Record) => void; output?: (item: { [key: string]: unknown; }, trigger?: string) => { caretPosition: 'start' | 'end' | 'next' | number; text: string; key?: string; } | string | null; }; } //# sourceMappingURL=types.d.ts.map