import type { PartialJSONObject } from '@difizen/libro-common'; import type { CellOptions } from '@difizen/libro-core'; import type { LibroPromptCellModel } from './prompt-cell-model.js'; export type LibroPromptCellModelFactory = (options: CellOptions) => LibroPromptCellModel; export declare const LibroPromptCellModelFactory: unique symbol; export interface InterpreterMeta extends PartialJSONObject { support_interpreter?: 'dynamic' | 'immutable' | 'disable'; interpreter_enabled?: boolean; interpreter_code?: string; interpreter_text?: string; } //# sourceMappingURL=prompt-cell-protocol.d.ts.map