export interface Props { /** Current search query (text after @) */ query: string; /** Matching suggestions */ suggestions: Array<{ id: string; name: string; avatarUrl?: string; }>; /** Select a suggestion */ onselect: (id: string) => void; /** Whether the popup is visible */ isVisible: boolean; /** Dismiss the popup (e.g. Escape pressed) without selecting */ oncancel?: () => void; } declare const MentionAutocomplete: import("svelte").Component; type MentionAutocomplete = ReturnType; export default MentionAutocomplete; //# sourceMappingURL=MentionAutocomplete.svelte.d.ts.map