import type { Strapi4ResponseSingle, Strapi4RequestParams, Strapi4ResponseMany } from '../types/v4.js'; interface StrapiV4Client { find(contentType: string, params?: Strapi4RequestParams): Promise>; findOne(contentType: string, id?: string | number | Strapi4RequestParams, params?: Strapi4RequestParams): 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: () => StrapiV4Client; export {};