import type { CmsContext } from "../../../types/index.js"; export interface CreateEntryArgs { modelId: string; data: Record; fields: string[]; } export declare const createCreateEntryResolver: () => ({ args, context }: { args: CreateEntryArgs; context: CmsContext; }) => Promise<{}>;