import { AptlyFieldType } from '../enums/index.js'; export type AptlyDraftJS = string; export type AptlyMarkdown = string; export interface AptlyField { type: AptlyFieldType; label: L; placeholder?: string; required?: boolean; pattern?: string; autoComplete?: string; disabled?: boolean; multiple?: boolean; autoFocus?: boolean; options: AptlyFieldOption[]; } export interface AptlyFieldOption { value: V; label: string; }