import { IAnyType } from "../../internal"; export declare function late(type: () => T): T; export declare function late(name: string, type: () => T): T; /** * Returns if a given value represents a late type. * * @param type * @returns */ export declare function isLateType(type: IT): type is IT;