import type { UID, Modules } from '@strapi/types'; declare const createEntriesService: (uid: UID.ContentType, entityValidator: Modules.EntityValidator.EntityValidator) => { create: (params?: any) => Promise; delete: (id: number, query?: any) => Promise; update: (entryToUpdate: any, params?: any) => Promise; publish: (entry: any, params?: any) => Promise; discardDraft: (entry: any, params?: any) => Promise; }; export { createEntriesService }; //# sourceMappingURL=entries.d.ts.map