import type { TextNode } from 'lexical'; import type { Resolution, TypeaheadOption } from '../composables'; declare function selectOptionAndCleanUp(selectedEntry: TypeaheadOption): void; declare function updateSelectedIndex(index: number): void; declare const _default: __VLS_WithTemplateSlots, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { close: () => void; selectOption: (payload: { close: () => void; option: TypeaheadOption; textNodeContainingQuery: TextNode | null; matchingString: string; }) => void; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly>> & { onClose?: (() => any) | undefined; onSelectOption?: ((payload: { close: () => void; option: TypeaheadOption; textNodeContainingQuery: TextNode | null; matchingString: string; }) => any) | undefined; }, {}, {}>, { default?(_: { listItemProps: { options: TypeaheadOption[]; selectOptionAndCleanUp: typeof selectOptionAndCleanUp; selectedIndex: number | null; setHighlightedIndex: typeof updateSelectedIndex; }; anchorElementRef: HTMLElement; matchString: string; }): any; }>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };