UNPKG

@ark-ui/vue

Version:

A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.

17 lines (16 loc) 687 B
import { HTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; import { UseHighlightProps } from './use-highlight'; export interface HighlightBaseProps extends UseHighlightProps { } export interface HighlightProps extends HighlightBaseProps, /** * @vue-ignore */ HTMLAttributes { } declare const _default: DefineComponent<HighlightProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<HighlightProps> & Readonly<{}>, { matchAll: boolean; ignoreCase: boolean; exactMatch: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; export default _default;