import type { ContentNavigationItem } from '@nuxt/content'; import type { AppConfig } from '@nuxt/schema'; import type { ComponentConfig } from '@nuxt/ui'; import theme from '#build/ui-pro/content/content-surround'; type ContentSurround = ComponentConfig; export interface ContentSurroundLink extends ContentNavigationItem { description?: string; /** * @IconifyIcon */ icon?: string; class?: any; ui?: Pick; } export interface ContentSurroundProps { /** * The element or component this component should render as. * @defaultValue 'div' */ as?: any; /** * The icon displayed in the prev link. * @defaultValue appConfig.ui.icons.arrowLeft * @IconifyIcon */ prevIcon?: string; /** * The icon displayed in the next link. * @defaultValue appConfig.ui.icons.arrowRight * @IconifyIcon */ nextIcon?: string; surround?: T[]; class?: any; ui?: ContentSurround['slots']; } type SlotProps = (props: { link: T; }) => any; export interface ContentSurroundSlots { 'link': SlotProps; 'link-leading': SlotProps; 'link-title': SlotProps; 'link-description': 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> & ContentSurroundProps & Partial<{}>> & import("vue").PublicProps; expose(exposed: import("vue").ShallowUnwrapRef<{}>): void; attrs: any; slots: ContentSurroundSlots; emit: {}; }>) => import("vue").VNode & { __ctx?: Awaited; }; export default _default; type __VLS_PrettifyLocal = { [K in keyof T]: T[K]; } & {};