from collections.abc import Sequence
from typing import Self

import numpy as np
from pandas.core.arrays.integer import IntegerArray
from pandas.core.arrays.masked import BaseMaskedArray as BaseMaskedArray

from pandas._libs.missing import NAType
from pandas._typing import (
    np_ndarray_bool,
    type_t,
)

from pandas.core.dtypes.dtypes import BaseMaskedDtype

class BooleanDtype(BaseMaskedDtype):
    def construct_array_type(self) -> type_t[BooleanArray]: ...

class BooleanArray(BaseMaskedArray):
    def __init__(
        self, values: np_ndarray_bool, mask: np_ndarray_bool, copy: bool = False
    ) -> None: ...
    @property
    def dtype(self) -> BooleanDtype: ...
    def __and__(
        self,
        other: (
            bool
            | np.bool
            | NAType
            | Sequence[bool | np.bool]
            | np_ndarray_bool
            | IntegerArray
            | Self
        ),
    ) -> Self: ...
    def __rand__(
        self,
        other: (
            bool
            | np.bool
            | NAType
            | Sequence[bool | np.bool]
            | np_ndarray_bool
            | IntegerArray
            | Self
        ),
    ) -> Self: ...
