{-# LANGUAGE NoImplicitPrelude #-}

module Papa.Base.Export.Data.Bool(
  module P
) where

import Data.Bool as P(
    (&&)
  , (||)
  , not
  , otherwise
  , bool
  )