import type { AsyncData, NuxtError } from 'nuxt/app'; /** * Composable to fetch multiple assets with optional filtering */ export declare const useGetAssets: (options: { locale?: string; limit?: number; skip?: number; orderBy?: string; includeCount?: boolean; where?: Record; }) => Promise | undefined>>;