import type { AppConfig } from '@nuxt/schema'; import type { ComponentConfig } from '@nuxt/ui'; import theme from '#build/ui-pro/blog-posts'; import type { BlogPostProps } from '../types'; type BlogPosts = ComponentConfig; export interface BlogPostsProps { /** * The element or component this component should render as. * @defaultValue 'div' */ as?: any; posts?: BlogPostProps[]; /** * The orientation of the blog posts. * @defaultValue 'horizontal' */ orientation?: BlogPosts['variants']['orientation']; class?: any; } export interface BlogPostsSlots { default(props?: {}): any; } declare const _default: __VLS_WithSlots & Readonly<{}>, { orientation: BlogPosts["variants"]["orientation"]; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, BlogPostsSlots>; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };