import { ICallback, IChainContainer } from "./Types"; export declare abstract class SwitchCase { protected pipe: P; protected counter: number; constructor(pipe: P); or(condition: ICallback): W; anyOf(conditions: ICallback[]): W; }