import latest from "@maplibre/maplibre-gl-style-spec/dist/latest.json"; import { Block } from "./Block"; import { InputString } from "./InputString"; type FieldIdProps = { value: string wdKey: string onChange(value: string | undefined): unknown error?: {message: string} }; export const FieldId: React.FC = (props) => { return ( ); };