export interface KlendWithdrawQueueInstructionEntity {
  id: bigint;
  raw_instruction_id: bigint;
  owner_id: number;
  klend_reserve_id: number;
  withdraw_ticket_id: bigint;
  resulting_queued_collateral_amount: string | null;
  enriched: string;
}

export default KlendWithdrawQueueInstructionEntity;
