/** `$event.target.value`, guarded — a template cannot narrow an EventTarget. */ export declare const inputValue: (event: Event) => string; /** The classes every editor field shares, so the editors stay about their shape. */ export declare const FIELD_CLASS = "rounded border border-stone-300 px-2 py-1"; export declare const LABEL_CLASS = "flex flex-col gap-1"; export declare const LABEL_TEXT_CLASS = "font-medium text-stone-600";