export type Left = [undefined, E]; export type Right = [T]; export type Either = Left | Right; export declare const Left: (error: E) => Left; export declare const Right: (value: T) => Right;