/** * Options that may be passed to label parameter of AdminFieldOptions. */ export interface LabelOptions { /** * Text to be displayed in the label. */ text?: string; /** * Should the label be displayed. * Defaults to true. */ visible?: boolean; /** * Should the label be rendered as input placeholder instead. * Defaults to false. */ placeholder?: boolean; }