import type { ElementalContent } from "@/types"; import React from "react"; interface ElementalValueProps { value?: ElementalContent; onChange?: (value: string, isValid: boolean) => void; } export declare const ElementalValue: React.FC; export {};