export type NoInfer = [T][T extends any ? 0 : never]; export declare const hasOwnProperty: (v: PropertyKey) => boolean; export declare const arrayFromSet: (set: Set) => T[]; export type Unsubscribable = { unsubscribe?: void | (() => any); }; export declare function maybeUnsubscribe(entryOrDep: Unsubscribable): void;