import type { LoanOptionItem } from "@/components/ui/loan-option-group"; /** * Shared option lists for the loan-application forms (Assets, Debts, Income, * The Loan steps). Kept here so the identical Monthly/Weekly and Yes/No sets * aren't re-declared in every form component. */ /** Payment / income frequency selector — monthly vs weekly. */ export const FREQUENCY_OPTIONS: LoanOptionItem[] = [ { value: "monthly", label: "Monthly" }, { value: "weekly", label: "Weekly" }, ]; /** Lowercase-value yes/no toggle used across the loan forms. */ export const YES_NO_OPTIONS: LoanOptionItem[] = [ { value: "yes", label: "Yes" }, { value: "no", label: "No" }, ];