import { IconProp } from "@fortawesome/fontawesome-svg-core"; type RowType = "input" | "checkbox" | "select" | "number"; export interface Row { type: RowType; label: string; placeholder?: string; default?: string | number; checked?: boolean; options?: { value: string; label?: string }[]; password?: boolean; icon?: IconProp; }