@ark-ui/vue
Version:
A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.
21 lines (20 loc) • 909 B
TypeScript
import { LinkProps } from '@zag-js/navigation-menu';
import { AnchorHTMLAttributes, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
import { PolymorphicProps } from '../factory';
export interface NavigationMenuLinkBaseProps extends Partial<LinkProps>, PolymorphicProps {
}
export interface NavigationMenuLinkProps extends NavigationMenuLinkBaseProps,
/**
* @vue-ignore
*/
Omit<AnchorHTMLAttributes, 'current' | 'onSelect'> {
}
declare const _default: __VLS_WithTemplateSlots< DefineComponent<NavigationMenuLinkProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<NavigationMenuLinkProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>, {
default?(_: {}): any;
}>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};