import type * as monaco from 'monaco-editor';
import { type ZodSchema } from 'zod';
export declare const registerLiquidLanguage: (monacoInstance: typeof monaco) => void;
export declare const setModelLiquidValidation: (monacoInstance: typeof monaco, model: monaco.editor.ITextModel, schemas: Record<string, ZodSchema<unknown>>) => void;
