import { SealedPartial } from './sealed'; export declare class Either extends SealedPartial V; failure: (state: F) => V; }> { static success(value?: S): Either; static failure(value?: F): Either; }