export interface CheckinResult {
  id: number;
  success: boolean;
  ticket?: { id: number; ticket_code: string; holder_name: string; companion_name?: string | null };
  petugas?: string;
  method: "qr" | "manual";
  checked_in_at: string | null;
  notes: string | null;
}
