/**
 * Simple textual input for Single-line string fields.
 */
export type SingleLineEditorConfiguration = {
  /** Indicates if the field should be shown bigger, as a field representing a heading */
  heading: boolean;
  /** A placeholder that will be shown in the editor's input to provide editors with an example */
  placeholder?: string;
};
