import { ImageProps } from '@/common-types'; import { Post } from '@/payload-types'; export interface BlogProps { image: Omit; authors?: { name: string; profilePicture: ImageProps; }[]; categories?: string[]; commentCount: string; title: string; description: string; slug: string; publishedAt: string; meta: Post['meta']; } export declare function NewsList({ blogs, base }: { blogs: Partial[]; base: string; }): import("react/jsx-runtime").JSX.Element;