import type * as P from "@principia/prelude"; import * as HKT from "@principia/prelude/HKT"; import type { URI, V } from "./model"; /** * ```haskell * getFilterable :: Monoid e -> Filterable (Either e _) * ``` * * Builds a `Filterable` instance for `Either` given `Monoid` for the left side * * @category Instances * @since 1.0.0 */ export declare const getFilterable: (M: P.Monoid) => P.Filterable<["Either"], V & HKT.Fix<"E", E>>; //# sourceMappingURL=filterable.d.ts.map