import { NativeClass } from "@stryke/types/base"; //#region src/is-object.d.ts /** Is ES6+ class */ declare function isNativeClass(value?: any): value is NativeClass; /** * Check if the provided value's type is a conventional class * * @remarks * Is Conventional Class * Looks for function with capital first letter MyClass * First letter is the 9th character * If changed, isClass must also be updated * * @param value - The value to type check * @returns An indicator specifying if the value provided is a conventional class */ declare function isConventionalClass(value?: any): value is Function; /** * Check if the provided value's type is `Object` * * @param value - The value to type check * @returns An indicator specifying if the value provided is of type `Object` */ declare function isClass(value?: any): value is Function | NativeClass; /** * Check if the provided value's type is `Object` * * @param value - The value to type check * @returns An indicator specifying if the value provided is of type `Object` */ declare const isObject: (value: unknown) => value is object; //#endregion export { isClass, isConventionalClass, isNativeClass, isObject }; //# sourceMappingURL=is-object.d.mts.map