/** * Makes instanceof work correctly even if the class definition was duplicated (e.g. when bundling). * The comparison is done by comparing the tag passed to this function. * * Example: * * ```typescript * @safeInstanceof('Tagged') * class Tagged {} * ``` */ export declare const safeInstanceof: (tag: string) => ClassDecorator; //# sourceMappingURL=safe-instanceof.d.ts.map