import type { CmsContext } from "../../../types/index.js"; export interface GetEntryArgs { modelId: string; where: Record; fields: string[]; preview?: boolean; } export declare const createGetEntryResolver: () => ({ args, context }: { args: GetEntryArgs; context: CmsContext; }) => Promise<{}>;