import type { CmsEntry, CmsEntryValues, CmsModel, CreateCmsEntryInput, CreateCmsEntryOptionsInput } from "../../../../types/index.js"; export interface ICreateEntryDataResponse { entry: CmsEntry; input: CreateCmsEntryInput; } export interface ICreateEntryDataFactory { create(model: CmsModel, rawInput: CreateCmsEntryInput, options?: CreateCmsEntryOptionsInput): Promise>; } export declare const CreateEntryDataFactory: import("@webiny/di").Abstraction; export declare namespace CreateEntryDataFactory { type Interface = ICreateEntryDataFactory; type Response = ICreateEntryDataResponse; }