import type { AppConfig } from '@nuxt/schema'; import type { LinkProps, ComponentConfig } from '@nuxt/ui'; import theme from '#build/ui-pro/page-anchors'; type PageAnchors = ComponentConfig; export interface PageAnchor extends Omit { label: string; /** * @IconifyIcon */ icon?: string; class?: any; ui?: Pick; } export interface PageAnchorsProps { /** * The element or component this component should render as. * @defaultValue 'nav' */ as?: any; links?: T[]; class?: any; ui?: PageAnchors['slots']; } type SlotProps = (props: { link: T; active: boolean; }) => any; export interface PageAnchorsSlots { 'link': SlotProps; 'link-leading': SlotProps; 'link-label': SlotProps; 'link-trailing': SlotProps; } declare const _default: (__VLS_props: NonNullable>["props"], __VLS_ctx?: __VLS_PrettifyLocal>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable>["expose"], __VLS_setup?: Promise<{ props: __VLS_PrettifyLocal & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, never> & PageAnchorsProps & Partial<{}>> & import("vue").PublicProps; expose(exposed: import("vue").ShallowUnwrapRef<{}>): void; attrs: any; slots: PageAnchorsSlots; emit: {}; }>) => import("vue").VNode & { __ctx?: Awaited; }; export default _default; type __VLS_PrettifyLocal = { [K in keyof T]: T[K]; } & {};