import { Typed } from "@stryke/types/base"; //#region src/is-typed.d.ts /** * 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 */ declare const isTyped: (value: unknown) => value is Typed; //#endregion export { isTyped }; //# sourceMappingURL=is-typed.d.cts.map