import { ITyped } from "../utility-types/base"; /** * Check if the provided value has a `__typename` property * * @param value - The value to type check * @returns An indicator specifying if the value provided has a `__typename` property */ export declare const isTyped: (value: unknown) => value is ITyped;