export interface PdfExpandableAccountCardProps {
  value: {
    id: number;
    title: string;
    reportedAt?: string;
    text?: string;
    date?: string;
    status?: string;
    value?: string;
    currentBalance?: number;
    highestBalance?: number;
    monthlyPayment?: number;
    paymentStatus?: string;
    amountPastDue?: number;
    accountNumber?: string;
    accountStatus?: string;
    openDate?: string;
    lastActivity?: string;
    type?: string;
    responsibility?: string;
    remarks?: string;
    timesLate?: string;
    monthsReviewed?: number;
    termsCount?: number;
    termSourceType?: string;
    highCredit?: number;
    paymentPattern: Array<{ Data: string; StartDate: string }> | never[];
  };
  heading: string;
  borderLeftColor: string;
  isHardInquiries?: boolean;
  currentBalance?: number;
  highestBalance?: number;
  monthlyPayment?: number;
  paymentStatus?: string;
  amountPastDue?: number;
  accountNumber?: string | null;
  accountStatus?: string | null;
  openDate?: string | null;
  lastActivity?: string | null;
  type?: string | null;
  responsibility?: string | null;
  remarks?: string | null;
  timesLate?: string;
  monthsReviewed?: number;
  termsCount?: number;
  termSourceType?: string | null;
  highCredit?: number;
  paymentPattern?: Array<{ Data: string; StartDate: string }> | never[];
}