import { RoughAnnotation } from './utils'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Props = { /** * Function which construct an annotation with an HTML element. */ annotate: (el: HTMLElement, config?: Record) => RoughAnnotation; /** * Options for `annotate` * See [Configuring the Annotation]{@link https://github.com/rough-stuff/rough-notation?tab=readme-ov-file#configuring-the-annotation}. * @default * { type: 'highlight' } */ annotationConfig?: Record; /** * Whether to display the dialog modal. * @default true */ open?: boolean; /** * HTML tag for rendering the marked element. * @default 'span' */ tag?: string; }; declare function __VLS_template(): { attrs: Partial<{}>; slots: Readonly<{ /** Content of the marked element. */ default?: (props: {}) => any; }> & { /** Content of the marked element. */ default?: (props: {}) => any; }; refs: { target: HTMLSpanElement; }; rootEl: any; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, { target: HTMLSpanElement; }, any>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };