import type { AsyncData, NuxtError } from 'nuxt/app'; /** * Composable to fetch multiple entries of a content type with optional filtering */ export declare const useGetEntries: (options: { contentTypeUid: string; referenceFieldPath?: string[]; jsonRtePath?: string[]; locale?: string; replaceHtmlCslp?: boolean; limit?: number; skip?: number; orderBy?: string; includeCount?: boolean; where?: Record; }) => Promise | undefined>>;