/** * @param obj * @returns */ export declare const isObject: (obj: unknown) => obj is Record; /** * @param value * @returns */ export declare const isNumeric: (value: unknown) => boolean; /** * Strict object type check. Only returns true for plain JavaScript objects * * @param obj * @returns */ export declare const isPlainObject: (obj: unknown) => obj is Record; /** * Strict object type check. Only returns true for plain JavaScript objects * * @param obj * @returns */ export declare const isNull: (value: unknown) => value is null;