export type PosHeldSale = {
  id: number;
  hold_reference: string;
  label?: string | null;
  item_count: number;
  total: number | string;
  status: string;
  held_by_name?: string | null;
  created_at?: string;
  payload?: Record<string, unknown>;
};
