import { IntermediateInterface } from "../interfaces"; export declare class Intermediate implements IntermediateInterface { static of(value: T): Intermediate; static isIntermediate(x: unknown): x is IntermediateInterface; intermediate: T; constructor(value: T); }