import type { Strapi3RequestParams } from '../types/v3.js'; interface StrapiV3Client { count(contentType: string, params?: Strapi3RequestParams): Promise; find(contentType: string, params?: Strapi3RequestParams): Promise; findOne(contentType: string, id?: string | number | Strapi3RequestParams, params?: Strapi3RequestParams): Promise; create(contentType: string, data: Partial): Promise; update(contentType: string, id: string | number | Partial, data?: Partial): Promise; delete(contentType: string, id?: string | number): Promise; } export declare const useStrapi: () => StrapiV3Client; export {};