interface ExpressionEditorProps { value?: string; fields?: string[]; placeholder?: string; error?: string; validate?: (value: string) => string | null; class?: string; onchange?: (value: string) => void; } declare const ExpressionEditor: import("svelte").Component; type ExpressionEditor = ReturnType; export default ExpressionEditor;