export declare function hasOwnProperty(obj: NonNullable<unknown>, prop: PropertyKey): boolean;
export declare function getTypedKeys<T extends object>(obj: T): Array<keyof T>;
export declare function stringifyUnknown(value: unknown): string;
