import { Block } from "./Block"; import { InputSelect, type InputSelectProps } from "./InputSelect"; type FieldSelectProps = InputSelectProps & { label?: string fieldSpec?: { doc: string } }; export const FieldSelect: React.FC = (props) => { return ( ); };