import { Options } from 'roughjs/bin/core'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Props = { /** * Selectors or patterns to apply graphics configuration. */ include?: string | RegExp | (string | RegExp)[]; /** * [Options for Rough.js]{@link https://github.com/rough-stuff/rough/wiki#options}. * @type {import('roughjs/bin/core').Options} */ options: Options; }; declare function __VLS_template(): { attrs: Partial<{}>; slots: Readonly<{ /** Context scope of the config */ default?: (props: {}) => any; }> & { /** Context scope of the config */ default?: (props: {}) => any; }; refs: {}; rootEl: any; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };